/* Expert Signin button CSS - Header Menu */
.amelia-login-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
}

.amelia-login-box {
    background: #fff;
    max-width: 400px;
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.amelia-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    font-size: 22px;
    cursor: pointer;
}
.amelia-close:hover {
    background-color: #ffffff !important;
}
.amelia-login-form input {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
}

.amelia-login-error {
    color: red;
    display: none;
    margin-bottom: 10px;
}


.amelia-client-menu {
    position: relative;
    display: inline-block;
}

.amelia-client-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #000000 !important;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 999px !important;
    cursor: pointer;
}
.amelia-client-trigger:hover {
    background: #000000 !important;
}
.amelia-client-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 999999; 
    display: none;
}

.amelia-client-menu.active .amelia-client-dropdown {
    display: block;
}

.amelia-client-info {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.amelia-client-link {
    display: block;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
}

.amelia-client-link:hover {
    background: #f5f5f5;
}


.amelia-client-menu.active .amelia-arrow {
    transform: rotate(180deg);
}



/* ===============================
   CLIENT SIGN IN BUTTON
   =============================== */
.amelia-menu-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 15px;
    border-radius: 999px;

    background-color: #0f2a44;
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;

    border: 2px solid #0f2a44;
    cursor: pointer;

    transition: all 0.25s ease;
    white-space: nowrap;
}

.amelia-menu-login:hover {
    background-color: transparent;
    color: #0f2a44;
}

.amelia-menu-login:active {
    transform: scale(0.96);
}


.expert-booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    min-height: 400px;
}

.expert-booking-auth {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.expert-booking-auth h3 {
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.expert-booking-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expert-booking-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.expert-booking-btn-primary {
    background: #3498db;
    color: white;
}

.expert-booking-btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.expert-booking-btn-secondary {
    background: #2ecc71;
    color: white;
}

.expert-booking-btn-secondary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46,204,113,0.3);
}

.expert-booking-btn-ghost {
    background: transparent;
    color: #7f8c8d;
    border: 2px solid #ecf0f1;
}

.expert-booking-btn-ghost:hover {
    border-color: #bdc3c7;
    color: #2c3e50;
}

.expert-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.expert-booking-modal.active {
    display: flex !important;
}

.expert-booking-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expert-booking-modal h3 {
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.expert-booking-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #ecf0f1;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #7f8c8d;
    transition: all 0.2s ease;
}

.expert-booking-close:hover {
    background: #e74c3c;
    color: white;
}

.expert-booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expert-booking-input {
    padding: 14px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.expert-booking-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

.expert-booking-submit {
    padding: 14px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.expert-booking-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.expert-booking-submit:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.expert-booking-error {
    background: #ffe6e6;
    color: #e74c3c;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    border-left: 4px solid #e74c3c;
    display: none;
}

.expert-booking-container {
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    max-width: 100%;
}

.expert-booking-container.visible {
    opacity: 1;
}


.expert-booking-container .amelia-app-booking,
.expert-booking-container .am-catalog-booking,
.expert-booking-container > div {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.expert-booking-container:not(.visible) {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}


@media (max-width: 600px) {
    .expert-booking-auth {
        padding: 30px 20px;
    }
    
    .expert-booking-modal-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
}





/* 5-1-2025 */
.membership-card {
    border-radius: 8px;
    padding: 30px !important;
    margin-bottom: 20px !important;
    background: #f1f1f1;
}
.membership-card .membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px !important;
}
.membership-card h3{
    color: var(--e-global-color-text) !important;
    font-size: 28px !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;    
}
.membership-card small {
    color: #666 !important;
    font-size: 15px !important;
    margin-bottom: 30px !important;
    display: block;
}
.membership-card .membership-grid div{
    background: #fff !important;
    padding:15px !important;
    border-radius: 8px !important;
}
.membership-card .membership-grid div strong {
    display: block;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}
.mepr-cancel-btn {
    margin-top: 15px;
    display: inline-block !important;
    background: var(--am-c-btn-danger) !important;
    color: var(--am-c-main-bgr) !important;
    padding: 8px 14px !important;
    border-radius: 4px !important;
    font-size: 14px !important; 
}
.mepr-cancel-btn:hover{
    background: #de3c3c !important;
    color: var(--am-c-main-bgr) !important;
}
.expert-avatar{
    display: flex;
}
.expert-name{
    padding-left: 20px;
}

/*22-1-2026 (Thought Partner Profile Price input disable) */

/* Hide Amelia Toggle Sidebar button */
.am-fs-sb__page-heading:contains("Toggle Sidebar") {
    display: none !important;
}
.am-fs-sb__page:has(.am-icon-dashboard) {
    display: none !important;
}




/* 23-1-2026 (Client Register Page CSS Fix) */
/* .agreement-item {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} */

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.agreement-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    width: auto;
    flex-shrink: 0;
}

.agreement-checkbox label {
    font-weight: normal;
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}

.agreement-link {
    color: #0073aa;
    text-decoration: underline;
    font-weight: bold;
}

.agreement-link:hover {
    color: #005177;
    text-decoration: none;
}

/* Modal Styles */
.agreement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agreement-modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.agreement-modal-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px 8px 0 0;
}

.agreement-modal-header h3 {
    margin: 0;
	font-size: 1.4rem !important;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #1C244B;
}

.agreement-modal-close {
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.agreement-modal-close:hover {
    color: #000;
}

.agreement-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}
.agreement-modal-body h3{
	font-size: 1.8rem !important;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #1C244B;
}
.agreement-modal-body h4 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
	font-size: 1.4rem !important;
}

.agreement-modal-body p {
    margin-bottom: 15px;
}

.agreement-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    text-align: right;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.agreement-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

@media (max-width: 768px) {
    .agreement-modal-content {
        width: 95%;
        height: 95vh;
    }
    
    .agreement-modal-body {
        font-size: 13px;
    }
    
    .agreement-checkbox {
        align-items: flex-start;
    }
    
    .agreement-checkbox label {
        font-size: 14px;
    }
}



/*26-1-2026 */
/* Terms agreement modal specific styles */
.expert-booking-terms-content {
    padding: 20px 0;
}

.expert-booking-terms-checkboxes {
    margin-bottom: 20px;
}

.expert-booking-checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
}

.expert-booking-checkbox {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.expert-booking-checkbox-label span {
    flex: 1;
    line-height: 1.5;
    color: #333;
}

.expert-booking-checkbox-label a {
    color: #007bff;
    text-decoration: underline;
}

.expert-booking-checkbox-label a:hover {
    color: #0056b3;
}

.expert-booking-submit:disabled {
    opacity: 0.5;
    background-color: #fff !important;
    cursor: not-allowed;
}
.expert-booking-submit:hover{
    background-color: #DAC4A7 !important;
    color: #fff !important;
}

/* Modal content adjustments for terms */
.js-eb-modal[data-modal="guest-terms"] .expert-booking-modal-content {
    max-width: 500px;
}

.js-eb-modal[data-modal="guest-terms"] h3 {
    margin-bottom: 10px;
}



/* 28-1-2026 (NDA Sign Doc)*/

.esign-container {
    /*max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);*/
}
.esign-title {
    color: #1e293b;
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 700;
    border-bottom: 4px solid #DAC4A7;
    padding-bottom: 15px;
}
.esign-container .esign-title {
    color: var(--e-global-color-text) !important;
    font-size: 28px !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
}
.esign-subtitle {
    color: #64748b;
    margin: 0 0 30px 0;
    font-size: 15px;
}
.esign-container p {
    color: #666 !important;
    font-size: 16px !important;
}
.esign-user-card {
    background: #DAC4A7;
    padding: 25px !important;
    border-radius: 10px;
    color: #1e293b;
    margin-top: 35px !important;
    margin-bottom: 35px !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.esign-user-field label {
    font-size: 13px !important;
    display: block;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
}
.esign-user-field strong {
    font-size: 18px !important;
    font-weight: 700 !important;
    display: block;
}
.esign-empty-state {
    background: #DAC4A7;
    color: white;
    padding: 50px 30px;
    text-align: center;
    border-radius: 10px;
    margin: 30px 0;
}
.esign-empty-state .icon {
    font-size: 56px;
    margin-bottom: 20px;
}
.esign-empty-state h3 {
    margin: 0 0 12px 0;
    font-size: 26px;
    color: white;
}
.esign-empty-state p {
    margin: 0;
    opacity: 0.95;
    font-size: 16px;
}
.esign-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}
.esign-table {
    width: 100%;
    border-collapse: collapse !important;
    background: var(--e-global-color-1615fe1) !important;
    overflow: hidden;
}
.esign-table thead {
    background: var(--e-global-color-primary) !important;
    color: var(--e-global-color-1615fe1) !important;
}
.esign-table th {
    padding: 18px 20px !important;
    text-align: left;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.esign-table tbody tr {
    border-bottom: 1px solid #e1e1e1 !important;
    background-color: transparent !important;
}
.esign-table tbody tr:hover {
    background-color: #FBF9F6 !important;   
}
.esign-table tbody td {
    background-color: transparent !important;
    padding: 20px !important;
    vertical-align: middle !important;
}
.esign-doc-title {
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: var(--e-global-color-text) !important;
    font-size: 18px !important;
}
.esign-table tbody td .esign-doc-id {
    font-size: 12px !important;
    color: #fff;
    background: var(--am-c-sb-bgr);
    padding: 3px 10px !important;
    border-radius: 5px;
    display: inline-block;
    margin-top: 5px !important;
}
.esign-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px !important;
    border-radius: 25px;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--am-c-main-bgr);
    background: var(--am-c-success) !important;
}
.esign-date-display,
.esign-time-display {
    color: var(--e-global-color-text) !important;
    font-size: 16px !important;
}
.esign-download-btn,
.esign-refresh-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    cursor: pointer;
    background: var(--e-global-color-accent) !important;
    color: var(--e-global-color-primary) !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    border: none !important;
    min-width: 140px;   
}
.esign-download-btn:hover,
.esign-refresh-btn:hover {
    background:  var(--e-global-color-primary) !important;
    color: var(--am-c-main-bgr) !important;
}
.esign-stats-footer {
    margin-top: 35px !important;
    padding: 15px 25px !important;
    background:#f5f5f5 !important;
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.esign-doc-count {
    color:var(--e-global-color-text) !important;
}
@media (max-width: 1280px){
    .esign-table-wrapper .esign-table{
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


.am-fs-sb__footer .am-fs-sb__page-divider,
.am-fs-sb__footer .am-fs-sb__page:last-child {
    display: none !important;
}

.mp_wrapper fieldset.mepr-payment-methods-wrapper legend{
    font-weight: 600;
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 0px;
}
.mepr-payment-option-label {
    margin-top: 10px;
}

.mepr-payment-methods-radios {
    margin-top: 10px;
}
.mp_wrapper .mepr-payment-methods-radios label{
    font-weight: 400 !important;
}
.mepr-payment-methods-wrapper hr{
    margin-top: 10px !important;
}
/* 9-2-2026 (Share Link CSS) */
.am-share-button {
    background-color: #000000 !important;
    margin-bottom: 10px;
    color: white;
    border-style: none !important;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.am-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.expert-share-header-view {
    margin-top: 22px !important;
    margin-left: 30px !important;
}
@media (max-width: 767px) {
    .expert-share-header-view {
        margin-top: 7px !important;
    }
    .am-share-icons {
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr)) !important;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .expert-share-header-view {
        margin-top: 15px !important;
    }
}
.am-share-button:active {
    transform: translateY(0);
}

/* Modal Styles */
.am-share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.am-modal-content {
    background: white;
    width: 90%;
    max-width: 520px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.am-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5f5f5;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
}

.am-modal-close:hover {
    background: #e0e0e0;
    color: #ffffff;
}

.am-modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.am-modal-header h4 {
    margin: 0 0 8px 0;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
}

.am-modal-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.am-share-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    justify-items: center;
    margin-bottom: 10px;
}

.am-share-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease;
}

.am-share-icon:hover {
    transform: translateY(-4px);
}

.am-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.am-share-icon:hover .am-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.am-icon-circle svg {
    width: 32px;
    height: 32px;
}

.am-icon-label {
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

/* Platform Colors */
.am-icon-whatsapp .am-icon-circle {
    background: #25D366;
}

.am-icon-facebook .am-icon-circle {
    background: #1877F2;
}

.am-icon-linkedin .am-icon-circle {
    background: #0A66C2;
}

.am-icon-twitter .am-icon-circle {
    background: #1DA1F2;
}

.am-icon-email .am-icon-circle {
    background: #EA4335;
}

.am-icon-copy .am-icon-circle {
    background: #6c757d;
    cursor: pointer;
}

.am-copy-message {
    display: none;
    text-align: center;
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-top: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #c3e6cb;
}

@media (max-width: 480px) {
    .am-modal-content {
        padding: 25px 20px;
    }
    
    /* .am-share-icons {
        gap: 15px;
    } */
    
    .am-icon-circle {
        width: 56px;
        height: 56px;
    }
    
    .am-icon-circle svg {
        width: 28px;
        height: 28px;
    }
}

/* 12-2-2026 */

#terms-scroll-container {
    scroll-behavior: smooth;
}

#terms-scroll-container::-webkit-scrollbar {
    width: 10px;
}

#terms-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#terms-scroll-container::-webkit-scrollbar-thumb {
    background: #0066cc;
    border-radius: 10px;
}

#terms-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #0052a3;
}

.scroll-complete #scroll-status {
    color: #0052a3 !important;
}

.scroll-complete #read-label,
.scroll-complete #accept-label {
    opacity: 1 !important;
}

#accept-agreements:disabled {
    background: #ccc !important;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none !important;
    box-shadow: none;
}

#accept-agreements:not(:disabled):hover {
    background: #0052a3 !important;
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.status-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block !important;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block !important;
}

.readonly-checkbox {
    pointer-events: none;
    opacity: 0.7;
}
#read-agreement { width: 20px; height: 20px; margin-right: 15px; cursor: pointer; }
#accept-terms{margin-right: 15px;}