/* CSS for eDoc Terms Acceptance Modal */
.edoc-terms-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.edoc-terms-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
}

.edoc-terms-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.edoc-terms-modal-body {
    padding: 20px;
}

.edoc-terms-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.edoc-terms-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.edoc-terms-modal-close:hover,
.edoc-terms-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.purchase-alert {
    color: #dc3545;
    font-weight: bold;
    margin-bottom: 1rem;
}
