/* Modern Long-Term Care Management Platform Theme */

/* CSS Variables for consistent theming */
:root {
    /* Primary Color Palette */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    
    /* Secondary Color Palette */
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-300: #cbd5e1;
    --secondary-400: #94a3b8;
    --secondary-500: #64748b;
    --secondary-600: #475569;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    
    /* Accent Colors */
    --accent-green: #10b981;
    --accent-yellow: #f59e0b;
    --accent-red: #ef4444;
    --accent-purple: #8b5cf6;
    --accent-orange: #f97316;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #94a3b8;
    
    /* Shadow Definitions */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout Structure */
#container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main layout wrapper */
.main-wrapper {
    display: flex;
    flex: 1;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--text-white);
    padding: 0;
    box-shadow: var(--shadow-lg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border: none;
    height: 70px;
    display: flex;
    align-items: center;
}

.header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: inline-block;
    transition: var(--transition-fast);
}

.header .logo:hover {
    color: var(--primary-100);
    text-decoration: none;
}

.sidebar-toggle-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin: 0.75rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sidebar-toggle-box:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-toggle-box .fa {
    color: var(--text-white);
    font-size: 1.25rem;
}

/* Sidebar Styles */
#sidebar {
    background: var(--bg-primary);
    width: 260px;
    box-shadow: var(--shadow-lg);
    border-right: 1px solid var(--border-light);
    transition: var(--transition-normal);
    overflow-y: auto;
    height: calc(100vh - 70px);
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 999;
}

#sidebar.collapsed {
    transform: translateX(-260px);
}

/* Main Content Area */
#main-content {
    flex: 1;
    margin-left: 260px;
    background-color: var(--bg-secondary);
    transition: var(--transition-normal);
    min-height: calc(100vh - 70px);
}

#main-content.expanded {
    margin-left: 0;
}

.sidebar-menu {
    margin: 0;
    padding: 1rem 0;
    list-style: none;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu > li > a {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
    font-weight: 500;
}

.sidebar-menu > li > a:hover,
.sidebar-menu > li.active > a {
    background-color: var(--primary-50);
    color: var(--primary-700);
    border-left-color: var(--primary-500);
}

.sidebar-menu > li > a i {
    width: 20px;
    margin-right: 0.75rem;
    font-size: 1.125rem;
    color: var(--primary-500);
}

.sidebar-menu > li > a span {
    font-weight: 500;
}

/* Sub-menu styles */
.sidebar-menu .sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--bg-tertiary);
    display: none;
}

.sidebar-menu .sub-menu.active .sub {
    display: block;
}

.sidebar-menu .sub li a {
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.sidebar-menu .sub li a:hover {
    background-color: var(--primary-100);
    color: var(--primary-700);
}

/* User info in sidebar */
.centered {
    text-align: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.centered img {
    border: 3px solid var(--primary-200);
    transition: var(--transition-fast);
}

.centered img:hover {
    border-color: var(--primary-400);
}

.centered h5 {
    margin: 0.75rem 0 0 0;
    color: var(--text-primary);
    font-weight: 600;
}

.wrapper {
    padding: 2rem;
    min-height: calc(100vh - 140px);
}

/* Card/Panel Styles */
.content-panel,
.form-panel,
.panel {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    overflow: hidden;
}

.content-panel h4,
.panel-heading h4 {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--text-white);
    margin: 0;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-bottom: none;
}

.content-panel h4 i,
.panel-heading h4 i {
    margin-right: 0.5rem;
    color: var(--primary-100);
}

/* Table Styles */
.table {
    margin-bottom: 0;
    background: var(--bg-primary);
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--text-white);
    font-weight: 600;
    padding: 1rem;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: var(--bg-tertiary);
}

.table-hover > tbody > tr:hover > td {
    background-color: var(--primary-50);
    transition: var(--transition-fast);
}

/* Enhanced Table Styling */
.modern-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.modern-table .table th:first-child {
    border-top-left-radius: var(--radius-lg);
}

.modern-table .table th:last-child {
    border-top-right-radius: var(--radius-lg);
}

/* Button Styles */
.btn {
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-green), #059669);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-yellow), #d97706);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-danger {
    background: linear-gradient(135deg, var(--accent-red), #dc2626);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-100);
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--secondary-200);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-xs {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* Form Styles */
.form-control {
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

/* Search and Filter Styles */
.search-container {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.filter-input {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    background-color: var(--bg-primary);
    transition: var(--transition-fast);
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Pagination Styles */
.pagination {
    margin: 2rem 0 0 0;
    justify-content: center;
}

.page-item .page-link {
    border: 1px solid var(--border-medium);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    margin: 0 0.125rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    text-decoration: none;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-color: var(--primary-500);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.page-item .page-link:hover {
    background-color: var(--primary-50);
    border-color: var(--primary-300);
    color: var(--primary-700);
}

.page-item.disabled .page-link {
    color: var(--text-muted);
    background-color: var(--bg-tertiary);
    border-color: var(--border-light);
}

/* Alert Styles */
.alert {
    border-radius: var(--radius-lg);
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border-left: 4px solid var(--accent-green);
}

.alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
    border-left: 4px solid var(--accent-red);
}

.alert-warning {
    background-color: #fefbeb;
    color: #92400e;
    border-left: 4px solid var(--accent-yellow);
}

.alert-info {
    background-color: #eff6ff;
    color: #1e40af;
    border-left: 4px solid var(--primary-500);
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--primary-50);
    color: var(--primary-700);
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, var(--secondary-800), var(--secondary-900));
    color: var(--text-white);
    padding: 2rem 0;
    margin-top: auto;
    border-top: 1px solid var(--border-dark);
}

.site-footer a {
    color: var(--primary-300);
    text-decoration: none;
    transition: var(--transition-fast);
}

.site-footer a:hover {
    color: var(--primary-200);
}

/* Responsive Design */
@media (max-width: 768px) {
    #sidebar {
        transform: translateX(-260px);
        position: fixed;
        z-index: 1001;
        height: calc(100vh - 70px);
        top: 70px;
    }
    
    #sidebar.show {
        transform: translateX(0);
    }
    
    #main-content {
        margin-left: 0;
    }
    
    .wrapper {
        padding: 1rem;
    }
    
    .header .logo {
        font-size: 1.25rem;
        padding: 1rem;
    }
    
    .table-responsive {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }
    
    .btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .wrapper {
        padding: 0.75rem;
    }
    
    .content-panel h4,
    .panel-heading h4 {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .btn-xs {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    border-top-color: var(--primary-500);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Visual Effects */
.card-hover {
    transition: var(--transition-normal);
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dashboard specific styles */
.dashboard-card {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-tertiary));
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Table action buttons container */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    min-width: auto;
}

/* Improved table filter row */
.table thead tr:nth-child(2) th {
    background: var(--bg-primary);
    border-bottom: 2px solid var(--border-light);
    padding: 0.5rem;
}

/* Enhanced sidebar menu icons */
.sidebar-menu > li > a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Better focus states for accessibility */
*:focus {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

button:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

/* ===== AUTHENTICATION STYLES ===== */
.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

.auth-brand-section {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.auth-brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="60" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.auth-brand-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.auth-brand-logo {
    margin-bottom: 3rem;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 300px;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.auth-form-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

.auth-form {
    margin-bottom: 2rem;
}

.modern-input {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--surface-color);
}

.modern-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
    background-color: var(--bs-white);
}

.form-floating > .modern-input {
    padding-top: 1.625rem;
    padding-bottom: 1.625rem;
}

.form-floating > label {
    padding: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-floating > .modern-input:focus ~ label,
.form-floating > .modern-input:not(:placeholder-shown) ~ label {
    color: var(--bs-primary);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 0.25rem;
    cursor: pointer;
    z-index: 5;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--bs-primary);
}

.form-floating {
    position: relative;
}

.modern-btn {
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.modern-btn:active {
    transform: translateY(0);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider span {
    background-color: var(--bs-white);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.auth-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.password-requirements {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.password-requirements ul li {
    margin-bottom: 0.25rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 991.98px) {
    .auth-form-container {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
    
    .auth-container {
        background: var(--bs-white);
    }
    
    .auth-form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
        border-radius: 2px;
        margin-bottom: 2rem;
    }
}
