/* ===== CSS VARIABLES (Matched to landing-page.html) ===== */
:root {
    /* --- Dark Theme Palette --- */
    --primary: #4361ee;
    --primary-rgb: 67, 97, 238; /* For rgba() glow */
    --accent: #f72585;
    --success: #4cc9f0;
    --dark: #12121a; /* Darkest BG */
    --dark-section: #181822; /* Lighter BG for sections */
    --dark-card: #1f1f2c; /* Card backgrounds */
    --light: #f0f0f0; /* Main text color */
    --gray: #8a8a9e; /* Subtle text */

    --transition: all 0.3s ease;
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --card-border: 1px solid rgba(255, 255, 255, 0.1);
    /* --- Mapped Base Variables --- */
    --primary-color: var(--primary);
    --primary-hover: #3a0ca3; /* Mapped from landing-page --primary-dark */
    --secondary-color: #7209b7; /* Mapped from landing-page --secondary */
    --success-color: var(--success);
    --warning-color: #ffc107;
    --danger-color: var(--accent); /* Mapped from landing-page --accent */
    --info-color: var(--success);
    --text-primary: var(--light);
    --text-secondary: var(--gray);
    --text-muted: var(--gray);
    --bg-white: var(--dark-card);
    --bg-light: var(--dark-section);
    --border-color: var(--card-border);
    --border-light: var(--card-border);
    /* --- Shadows & Borders (Matched to landing-page.html) --- */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2); /* Darker shadow */
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.4);
    --border-radius: 8px; /* Matched to landing-page */
    --border-radius-lg: 12px; /* Matched to landing-page */
    --border-radius-xl: 16px;
    --max-content-width: 1200px;
    --shadow: var(--shadow-md); /* Mapped */
}

/* ===== ENHANCED BASE STYLES (Matched to landing-page.html) ===== */
body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* Matched font */
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--dark); /* Matched to landing-page */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Removed font-family from here, body tag handles it */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.smallpanel {
    max-width: 600px;
    margin: auto;
    margin-top:100px;
}

section {
    padding: 80px 0;
}

.form-control:disabled, .form-control[readonly] {
    background-color:unset;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--light); /* Matched to landing-page */
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary); /* Matched to landing-page */
}

.btn {
    display: inline-block;
    padding: 12px 30px; /* Matched to landing-page */
    border-radius: var(--border-radius); /* Matched to landing-page (8px) */
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.StrikeThrough {
    text-decoration: line-through;
}
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 26, 0.85)!important; /* Dark, blurred background */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

    header.scrolled {
        padding: 5px 0;
    }

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary); /* Uses the primary blue color */
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    color: var(--light); /* Light text color for dark background */
}

    .nav-link:hover {
        color: var(--primary); /* Link hover color */
    }

/* Styles the mobile menu "hamburger" icon to be white */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Matched .btn-primary to landing-page.html */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 25px rgba(var(--primary-rgb), 0.5);
    }

/* Matched .btn-secondary to landing-page.html */
.btn-secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

    .btn-secondary:hover {
        background-color: var(--light);
        color: var(--dark);
    }

/* Matched .btn-light to landing-page.html */
.btn-light {
    background-color: white;
    color: var(--dark);
}

    .btn-light:hover {
        background-color: #f0f0f0;
    }

/* Matched .btn-outline-light to landing-page.html */
.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-outline-light:hover {
        background-color: white;
        color: var(--dark);
    }

.text-center {
    text-align: center;
}
/* ===== LAYOUT ENHANCEMENTS ===== */
.container {
    max-width: var(--max-content-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 100px;
}

.container-fluid {
    max-width: var(--max-content-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

main {
    flex: 1;
    padding-bottom: 3rem !important;
    width: 100%;
    margin: 0 auto;
}

/* ===== ENHANCED NAVBAR (Matched to landing-page.html) ===== */


    .navbar .container-fluid {
        max-width: var(--max-content-width);
        margin: 0 auto;
    }

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
    transition: all 0.3s ease;
}

    .navbar-brand:hover {
        color: var(--primary) !important;
        transform: translateY(-1px);
    }

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    color: var(--light) !important; /* Matched */
}

    .navbar-nav .nav-link:hover {
        background-color: transparent;
        color: var(--primary) !important;
        transform: translateY(-1px);
    }

.navbar-toggler {
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}
/* Added toggler icon from landing-page.html */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

/* ===== ENHANCED BUTTONS ===== */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}


/* ===== ENHANCED FORM CONTROLS (Matched to landing-page.html) ===== */
.form-control {
    border: 1px solid var(--border-color); /* Matched */
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    background-color: var(--dark-card); /* Matched */
    color: var(--light); /* Matched */
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
        background-color: var(--dark-card); /* Matched */
    }

    .form-control:hover {
        border-color: var(--gray);
    }

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Enhanced Floating Labels */
.form-floating {
    position: relative;
}

    .form-floating > .form-control {
        height: calc(3.5rem + 4px);
        padding: 1rem 0.75rem;
    }

    .form-floating > label {
        padding: 1rem 0.75rem;
        color: var(--text-muted);
        transition: all 0.2s ease;
    }

    .form-floating > .form-control:focus ~ label,
    .form-floating > .form-control:not(:placeholder-shown) ~ label {
        transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
        color: var(--primary-color);
        font-weight: 500;
    }

/* ===== ENHANCED CHECKBOXES & RADIOS ===== */
.form-check-input {
    width: 1.1em;
    height: 1.1em;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--dark-card); /* Matched */
}

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .form-check-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
    }

.form-check-label {
    cursor: pointer;
    margin-left: 0.5rem;
    color: var(--text-primary); /* Matched */
}

/* ===== ENHANCED ALERTS & VALIDATION ===== */
.alert {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-sm);
}

.text-danger {
    color: var(--danger-color) !important;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.validation-summary-errors {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

    .validation-summary-errors ul {
        margin-bottom: 0;
        padding-left: 1rem;
    }

/* ===== ENHANCED FOOTER (Base CSS used, not landing-page's) ===== */
.footer {
    background-color: var(--bg-light); /* Matched to dark-section */
    border-top: 1px solid var(--border-light);
    margin-top: auto;
    width: 100%;
}

    .footer .container {
        max-width: var(--max-content-width);
        margin: 0 auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
        text-align: center;
        color: var(--text-secondary); /* Matched */
    }

/* ===== CARD ENHANCEMENTS (Matched to landing-page.html) ===== */
.card {
    border: var(--card-border);
    border-radius: var(--border-radius-lg);
    box-shadow: none;
    transition: all 0.3s ease;
    max-width: 100%;
    background-color: var(--dark-card); /* Matched */
}

    .card:hover {
        box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
        border-color: var(--primary);
        transform: translateY(-2px);
    }

.card-header {
    background-color: var(--dark-card); /* Matched */
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--light); /* Matched */
}

.card-body {
    padding: 1.5rem;
}

/* ===== CONTENT CENTERING ===== */
.content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.form-centered {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

/* ===== TABLE ENHANCEMENTS (Matched to landing-page.html) ===== */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: none;
    max-width: 100%;
    background: var(--dark-card); /* Matched */
    border: 1px solid var(--border-light);
}

    .table th {
        background-color: var(--dark-section); /* Matched */
        color: var(--light)!important; /* Matched */
        border: none;
        font-weight: 600;
        padding: 1rem;
    }

    .table tbody td {
        padding: 1rem;
        vertical-align: middle;
        border-color: var(--border-light);
        color: var(--text-secondary); /* Matched */
    }

.table-hover tbody tr:hover {
    background-color: rgba(var(--primary-rgb), 0.05); /* Matched */
}

/* ===== UTILITY CLASSES ===== */
.shadow-custom {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-custom {
    border-radius: var(--border-radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--border-radius-xl) !important;
}

.max-w-screen-lg {
    max-width: 1024px;
}

.max-w-screen-md {
    max-width: 768px;
}

.max-w-screen-sm {
    max-width: 640px;
}

/* ===== RESPONSIVE DESIGN (Copied from landing-page.html) ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}
.text-success {
    color: rgb(46, 192, 124) !important;
}
/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
.btn:focus,
.form-control:focus,
.form-check-input:focus,
.navbar-toggler:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    color: var(--light)
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #FFFFFF;
        --text-primary: #FFFFFF;
        --text-secondary: #DDDDDD;
        --dark-card: #000;
        --dark-section: #000;
        --dark: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .btn,
    .form-control,
    .navbar-nav .nav-link,
    .card {
        transition: none;
    }

        .btn:hover {
            transform: none;
        }
}

/* ===== LOADING STATES ===== */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

    .btn-loading::after {
        content: '';
        position: absolute;
        width: 1rem;
        height: 1rem;
        border: 2px solid transparent;
        border-top: 2px solid currentColor;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Footer (Matched to landing-page.html) */
footer {
    background-color: var(--dark-section);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--light); /* Matched */
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 40px;
        height: 3px;
        background: var(--primary);
    }

.footer-links {
    list-style: none;
    padding-left: 0; /* Added */
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: var(--gray); /* Matched */
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--light); /* Matched */
            padding-left: 5px;
        }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--dark-card); /* Matched */
        border-radius: 50%;
        color: white;
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-border); /* Matched */
    color: var(--gray); /* Matched */
    font-size: 0.9rem;
}
/* Newsletter Section (Matched to landing-page.html) */
.newsletter {
    
    color: var(--light); /* Matched */
    text-align: center;
}

    .newsletter h2 {
        color: var(--light); /* Matched */
    }

    .newsletter p {
        color: var(--gray); /* Matched */
        max-width: 600px;
        margin: 0 auto 2rem;
    }

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
   /* display: flex;
    gap: 10px;*/
}

.newsletter-input {
    width:100%;
    padding: 12px 15px; /* Matched */
    border: 1px solid var(--card-border); /* Matched */
    border-radius: var(--border-radius); /* Matched */
    font-size: 1rem;
    background-color: var(--dark-card); /* Matched */
    color: var(--light); /* Matched */
}

    .newsletter-input:focus {
        outline: none;
        border-color: var(--primary); /* Matched */
        box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25); /* Matched */
    }


/* Table */
.table {
    background: var(--dark-card); /* Matched */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

    .table thead {
        background: var(--dark-section); /* Matched */
    }

        .table thead th {
            color: white;
            border: none;
            padding: 1.25rem 1rem;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

    .table tbody td {
        padding: 1rem;
        vertical-align: middle;
        border-color: var(--border-light);
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

    .table tbody tr {
        transition: all 0.3s ease;
    }

        .table tbody tr:hover {
            background-color: rgba(var(--primary-rgb), 0.05); /* Matched */
            transform: translateY(-1px);
        }

    /* Action Links */
    .table a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 0.25rem 0.5rem;
        border-radius: var(--border-radius);
        margin: 0 0.25rem;
    }

        .table a:hover {
            color: var(--primary-hover);
            background-color: rgba(var(--primary-rgb), 0.1);
            text-decoration: none;
        }

        .table a:first-child {
            margin-left: 0;
        }

/* Table */

/*Form*/

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.control-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Form Controls (re-matched) */
.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color); /* Matched */
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--dark-card); /* Matched */
    color: var(--text-primary); /* Matched */
    line-height: 1.5;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); /* Matched */
        outline: none;
        background-color: var(--dark-card); /* Matched */
    }

    .form-control:hover {
        border-color: var(--text-muted);
    }

/* Form Check (Checkbox) */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--dark-section); /* Matched */
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    border: 2px solid var(--border-color);
    border-radius: 0.25rem; /* Matched */
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
    background-color: var(--dark-card); /* Matched */
}

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    }

    .form-check-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); /* Matched */
    }

.form-check-label {
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    margin: 0;
}

/* Focus States for Accessibility */
.form-control:focus,
.form-check-input:focus,
.btn-primary:focus,
a[asp-action="Index"]:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}



.btn-loading {
    position: relative;
    color: transparent !important;
}

    .btn-loading::after {
        content: '';
        position: absolute;
        width: 1.25rem;
        height: 1.25rem;
        border: 2px solid transparent;
        border-top: 2px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* Enhanced Input Types */
input[type="number"] {
    -moz-appearance: textfield;
}

    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

input[type="url"] {
    direction: ltr;
}

/* Placeholder Styling */
.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

/* Form Group Focus State */
.form-group:focus-within .control-label {
    color: var(--primary-color);
}

/* Success State (for when form submits successfully) */
.form-control.is-valid {
    border-color: var(--success-color);
}

    .form-control.is-valid:focus {
        border-color: var(--success-color);
        box-shadow: 0 0 0 3px rgba(75, 181, 67, 0.1);
    }

/* Error State */
.form-control.is-invalid {
    border-color: var(--danger-color);
}

    .form-control.is-invalid:focus {
        border-color: var(--danger-color);
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }
/*Form*/
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 26, 0.85) !important;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top */
}

.spinner {
    border: 8px solid #f3f3f3; /* Light grey border */
    border-top: 8px solid #3498db; /* Blue border for animation */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite; /* Apply spin animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 500;
}

h6 {
    font-size: 0.9rem;
    font-weight: 500;
    
}
h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
h1, h2, h3, h4, h5, h6 {
    /* Base styles from the main stylesheet */
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--light);
}
.modal-content{
    background:unset;
}

.text-bg-primary {
    color: #fff !important;
    background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
    color: #fff !important;
    background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
    color: #fff !important;
    background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
    color: #000 !important;
    background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
    color: #000 !important;
    background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
    color: #fff !important;
    background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
    color: #000 !important;
    background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}