﻿:root {
    --primary-color: #036280;
    --secondary-color: #16c8dd;
    --background: #f4f7fc;
    --success-color: #e9c46a;
    --white-color: #fffdfb;
    --black-color: #010F1C;
    --gray-color: #e2eef5;
    --navbar-height-top: 80px;
    --navbar-height-bottom: 60px;
    --app-page-header: 80px;
}

html, body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background-color: var(--background);
}

a {
    text-decoration: none;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg {
    background-color: var(--background);
}

.input-group-text {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
    border-radius: 0 0.75rem 0.75rem 0 !important;
}

.input-group-control {
    border: none !important;
    border-radius: 0.75rem 0 0 0.75rem !important;
}

/**/
.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
}

.icon-circle-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.hover-row:hover {
    background-color: rgba(0,0,0,0.02);
    transition: 0.3s;
}

.card-accent {
    height: 6px;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

/* Page */
.app-pages {
    background: var(--primary-color);
    padding-top: var(--navbar-height-top);
}

.app-page {
    background-color: var(--background);
    border-radius: 20px 20px 0 0;
    padding-bottom: var(--navbar-height-bottom);
}

.app-page-body {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-page-header {
    position: fixed;
    top: var(--app-page-header);
    width: 100%;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.app-page-container {
    padding: 1.2rem;
    padding-top: 70px;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #16c8dd, #036280);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    z-index: 9999;
}


/* Navbar */
.app-navbar-top {
    position: fixed;
    top: 0;
    height: var(--navbar-height-top);
    width: 100%;
    background-color: var( --primary-color);
    z-index: 9999;
}

.app-navbar-nav-top {
    height: 50%;
    display: flex;
    justify-content: space-between;
}

.app-navbar-item-top {
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
}

    .app-navbar-item-top.link:hover {
        color: var(--secondary-color);
    }


.app-navbar-bottom {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: var( --white-color);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.app-navbar-item-bottom {
    flex: 1;
    height: 100%;
    color: var(--primary-color);
    text-align: center;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.3s ease,color 0.3s ease;
}

    .app-navbar-item-bottom:hover {
        color: var( --white-color);
        background-color: var(--secondary-color);
    }

    .app-navbar-item-bottom i {
        font-size: 1.3rem;
    }

/* Card */
.card {
    position: relative;
    background-color: #ffff;
    border-radius: 0.7rem !important;
    border-radius: 5px;
    border: none;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.03);
    /*   box-shadow: 0 8px 16px 0 rgb(10 14 29 / 1%);*/
    margin-bottom: 15px;
    overflow: hidden;
}

.card-header, .card-footer {
    background-color: #ffff;
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
}

.card-body {
    padding: 1.2rem;
}

.card-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 5px 0;
}

.card-text {
    color: #343a40;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Noto Naskh Arabic',sans-serif;
    line-height: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Validation */
.validation-errors {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebd4d4;
    padding-top: 15px;
    padding-bottom: 15px;
}

.validation-message {
    color: #cf3a37;
    padding: 3px 0;
    font-size: 0.9rem;
}

/* Button */
.app-btn {
    position: relative;
    background: var(--secondary-color);
    color: var(--white-color);
    width: fit-content;
    border: none;
    border-radius: 48px;
    font-size: 18px;
    font-weight: 400;
    padding: 7px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    transition: color 0.5s ease;
}

    .app-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 100%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 250%;
        background: var(--primary-color);
        border-radius: 50%;
        z-index: 0;
        transition: width 1.2s ease-out;
    }

    .app-btn:hover::before {
        width: 400%;
    }

    .app-btn > * {
        position: relative;
        z-index: 1;
    }

.btn-primary {
    color: var(--white-color) !important;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Control */
.form-control, .form-select {
    border-radius: 5px;
}

/**/
.cursor-pointer {
    cursor: pointer;
}

.outline-none {
    border: none;
    outline: none !important;
    box-shadow: none;
}

    .outline-none:focus {
        border: none;
        outline: none !important;
        box-shadow: none;
    }

/* Offcanvas */
.offcanvas {
    background-color: var(--white-color) !important;
    z-index: 10000;
}

.offcanvas-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.offcanvas-end, .offcanvas-start {
    width: 300px !important;
}

.offcanvas-body {
    padding: 0;
}

.offcanvas-item {
    color: #495057;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .offcanvas-item:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }


/* Toast */
.toast-container {
    position: fixed;
}

    .toast-container.top {
        top: var(--navbar-height-top);
        left: 0;
    }

    .toast-container.bottom {
        bottom: 15px;
        right: 15px;
    }

.toast.success {
    background-color: #d1e7ddff !important;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 0 !important;
    margin-top: 0 !important;
    text-align: right;
    padding: 0;
}

    .dropdown-menu.notification {
        width: 450px;
    }


.dropdown-item {
    padding: 7px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #484848;
}

    .dropdown-item.active, .dropdown-item:active {
        color: #484848 !important;
        background-color: #fff !important;
    }

    .dropdown-item:hover, .dropdown-item:focus {
        color: #1e2125 !important;
        background-color: #e9ecef !important;
    }

.dropdown-container {
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-footer {
    width: 100%;
    padding: 7px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #dee2e6;
}

@media (max-width: 768px) {

    .offcanvas {
        width: 100% !important;
        background-color: var(--primary-color);
    }
}


/**/
/* ������� ���� */
.home-container {
    font-family: 'Cairo', sans-serif; /* ������ �� ���� ���� */
}

/* ���� ������� */
/* ���� ������� */
.news-ticker {
    overflow: hidden;
    position: relative;
    /* ����� ����� ���� ����� ������ ����� ���� ������� */
    direction: rtl;
}

.ticker-animation {
    white-space: nowrap;
    animation: scroll-news 15s linear infinite;
}

/* ����� ���� ������ ����� �� ������ ��� ������ */
@keyframes scroll-news {
    0% {
        transform: translateX(-100%); /* ���� �� ������ (���� ������) */
    }

    100% {
        transform: translateX(100%); /* ����� ��� ������ */
    }
}


/* ������ ������ */
.summary-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .summary-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.summary-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.2;
}

/* �������� ������ */
.shortcut-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .shortcut-card:hover {
        transform: translateY(-3px);
        color: var(--bs-primary);
    }

.circle-card {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ��� ��������� */
.list-group-item {
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background-color 0.2s ease;
}

    .list-group-item:hover {
        background-color: var(--bs-light);
    }

.modal-content {
    margin-top: calc(var(--navbar-height-top) + var(--app-page-header));
    margin-bottom: calc(var(--navbar-height-bottom) + 15px);
}



/******/

/* ============================================
           RE-ENROLLMENT UNIQUE STYLES (re-* prefix)
           ============================================ */

/* Container */
.re-container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Flex Utilities */
.re-flex {
    display: flex;
}

.re-justify-between {
    justify-content: space-between;
}

.re-align-center {
    align-items: center;
}

/* Cards */
.re-card {
    background: #fff;
    border-radius: 1rem !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .re-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    }

.re-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.re-card-body {
    padding: 1.5rem;
}

.re-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Badge */
.re-badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50rem;
}

/* Progress */
.re-progress {
    display: flex;
    height: 8px;
    overflow: hidden;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.re-progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width 0.6s ease;
}

.re-progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.re-progress-bar-animated {
    animation: re-progress-bar-stripes 1s linear infinite;
}

@keyframes re-progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

/* Alert */
.re-alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}

.re-alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.re-alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.re-alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.re-alert-dismissible {
    padding-right: 3rem;
}

.re-btn-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    cursor: pointer;
}

    .re-btn-close:hover {
        opacity: 0.75;
    }

/* Wizard */
.re-wizard-container {
    padding: 0 10px;
}

.re-wizard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.re-step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s;
}

    .re-step-wrapper:hover .re-step:not(.re-active) {
        transform: scale(1.1);
        background: #e9ecef;
    }

.re-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 3px solid #dee2e6;
    font-size: 0.875rem;
}

    .re-step.re-active {
        background: linear-gradient(135deg, #0d6efd, #0a58ca);
        color: white;
        border-color: #0d6efd;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    }

    .re-step.re-pulse {
        animation: re-pulse 2s infinite;
    }

@keyframes re-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.re-step-label {
    font-size: 10px;
    margin-top: 4px;
    color: #6c757d;
    white-space: nowrap;
    font-weight: 500;
}

.re-step.re-active + .re-step-label {
    color: #0d6efd;
    font-weight: bold;
}

.re-line {
    flex: 1;
    height: 3px;
    background: #dee2e6;
    transition: background 0.5s ease;
    margin: 0 5px;
    position: relative;
    z-index: 1;
}

.re-active-line {
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
}

/* Step Content Animation */
.re-step-content {
    animation: re-slideIn 0.3s ease;
}

@keyframes re-slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.re-fade-in {
    animation: re-fadeIn 0.5s ease;
}

@keyframes re-fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid System */
.re-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

    .re-row > * {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

.re-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.re-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Form Controls */
.re-form-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.re-form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .re-form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
        outline: 0;
    }

.re-form-control-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 10px;
}

.re-form-select {
    display: block;
    width: 100%;
    padding: 0.5rem 2.25rem 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .re-form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
        outline: 0;
    }

.re-form-select-lg {
    padding: 0.5rem 2.25rem 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 10px;
}

/* Form Check (Switch) */
.re-form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.re-form-switch .re-form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer;
    background-color: #e9ecef;
    border-radius: 2em;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    position: relative;
    border: 1px solid #ced4da;
    appearance: none;
    flex-shrink: 0;
}

    .re-form-switch .re-form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

    .re-form-switch .re-form-check-input::before {
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        width: calc(1.5em - 4px);
        height: calc(1.5em - 4px);
        background-color: #fff;
        border-radius: 50%;
        transition: transform 0.15s ease-in-out;
    }

    .re-form-switch .re-form-check-input:checked::before {
        transform: translateX(1.5em);
    }

.re-form-check-label {
    cursor: pointer;
    margin-bottom: 0;
}

/* Table */
.re-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.re-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

    .re-table td {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 1px solid #dee2e6;
    }

.re-table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.03);
}

.re-table-primary {
    background-color: #cfe2ff;
}

/* Buttons */
.re-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    user-select: none;
}

    .re-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }

    .re-btn:active {
        transform: translateY(0);
    }

    .re-btn:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

.re-btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 10px;
}

.re-btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .re-btn-primary:hover {
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

.re-btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

    .re-btn-success:hover {
        background-color: #157347;
        border-color: #146c43;
    }

.re-btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    border-color: #6c757d;
}

    .re-btn-outline-secondary:hover {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d;
    }

/* Info Box */
.re-info-box {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

    .re-info-box:hover {
        background-color: #e9ecef;
    }

/* ============================================
           RESPONSIVE
           ============================================ */
@media (max-width: 768px) {
    .re-step {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .re-step-label {
        font-size: 8px;
    }

    .re-wizard {
        gap: 0;
    }

    .re-line {
        margin: 0 2px;
    }

    .re-card-header h3 {
        font-size: 1.2rem;
    }

    .re-col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .re-container {
        padding-right: 10px;
        padding-left: 10px;
    }

    .re-card-body {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .re-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .re-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .re-container {
        max-width: 1140px;
    }
}

/* Bootstrap icon fallback if not loaded */
.bi {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
}

.bi-arrow-right::before {
    content: "←";
}

.bi-arrow-left::before {
    content: "→";
}

.bi-check-circle::before {
    content: "✓";
}

.bi-check-circle-fill::before {
    content: "✓";
}

.bi-exclamation-triangle-fill::before {
    content: "⚠";
}



/*---*/
/* Payment specific styles */
.re-payment-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .re-payment-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

.re-input-group {
    display: flex;
    align-items: center;
}

.re-input-group-text {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    background-color: #e9ecef;
    border: 2px solid #e9ecef;
    border-radius: 10px 0 0 10px;
    border-right: 0;
}

.re-input-group .re-form-control {
    border-radius: 0 10px 10px 0;
    border-left: 0;
}

    .re-input-group .re-form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
    }

/* Payment summary cards */
.re-payment-summary .re-col-md-6,
.re-payment-summary .re-col-12 {
    padding: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .re-input-group-text {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }

    .re-payment-box {
        padding: 0.75rem !important;
    }

        .re-payment-box h4 {
            font-size: 1.2rem;
        }

        .re-payment-box h3 {
            font-size: 1.5rem;
        }
}


/*------*/
.agreement-wrapper {
    max-width: 950px;
    margin: auto;
    background: #ffffff;
}

.agreement-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.section-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    flex-shrink: 0;
}

.section-content {
    flex: 1;
    border-right: 3px solid #f1f3f5;
    padding-right: 20px;
}

.list-group-item {
    line-height: 1.9;
    padding: 14px 0;
}

.agreement-box {
    position: sticky;
    bottom: 10px;
    z-index: 5;
}

table {
    font-size: 14px;
}

.form-check-label {
    font-size: 15px;
}

.notification-icon {
    position: relative;
    display: inline-block;
}

.notification-badge {
    position: absolute;
    top: 7px;
    right: 10px;
    background: red;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}