* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores comuns (não mudam) */
    --primary-color: #3498DB;
    --primary-dark: #2980B9;
    --secondary-color: #1E6FA8;
    --accent-color: #E74C3C;
    --success-color: #27AE60;
    --error-color: #E74C3C;
    --warning-color: #F39C12;
    --info-color: #3498DB;
}

/* Tema Escuro (padrão) */
:root {
    --text-color: #E8E8E8;
    --text-muted: #B0B0B0;
    --bg-color: #2a2d3e;
    --bg-secondary: #343a4e;
    --card-bg: #3a4560;
    --card-hover: #4a5270;
    --border-color: #4a5a6e;
}

/* Tema Claro (desabilitado - usando apenas tema escuro) */
:root.theme-light {
    --text-color: #E8E8E8;
    --text-muted: #B0B0B0;
    --bg-color: #2a2d3e;
    --bg-secondary: #343a4e;
    --card-bg: #3a4560;
    --card-hover: #4a5270;
    --border-color: #4a5a6e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-color) !important;
    background-attachment: fixed;
    transition: background 0.3s ease, color 0.3s ease;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Background gradient para tema escuro */
body:not(.theme-light) {
    background: linear-gradient(135deg, #2a2d3e 0%, #343a4e 50%, #3a4560 100%) !important;
}

/* Background para tema claro (usando cores escuras) */
body.theme-light {
    background: linear-gradient(135deg, #2a2d3e 0%, #343a4e 50%, #3a4560 100%) !important;
}

/* Garantir que todos os elementos tenham fundo escuro */
html {
    background: var(--bg-color) !important;
}

* {
    background-color: transparent;
}

/* Login Page */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), #2563A8);
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, border-color 0.3s ease;
}

body:not(.theme-light) .login-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.login-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    animation: rotate 15s infinite linear;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.3);
}

.login-card h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    font-size: 2em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(52, 152, 219, 0.5);
}

.login-card h2 {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: normal;
    position: relative;
    z-index: 1;
}

.login-info {
    margin-top: 20px;
    padding: 15px;
    background: var(--secondary-color);
    border-radius: 5px;
    font-size: 0.9em;
}

.login-info p {
    margin: 5px 0;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer-nav 4s infinite;
}

@keyframes shimmer-nav {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-container h2 {
    color: #FFFFFF !important;
    font-size: 1.5em;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.3), 0 0 25px rgba(52, 152, 219, 0.5);
    letter-spacing: 0.5px;
    margin: 0;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-user span {
    color: #FFFFFF !important;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 255, 255, 0.2);
    font-size: 1.05em;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(52, 152, 219, 0.1);
    height: fit-content;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body:not(.theme-light) .sidebar {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.sidebar:hover {
    transform: translateX(3px);
    box-shadow: 0 10px 35px rgba(52, 152, 219, 0.6), 0 0 25px rgba(52, 152, 219, 0.4);
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(52, 152, 219, 0.5));
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.menu {
    list-style: none;
}

.menu li {
    margin-bottom: 10px;
}

.menu a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    transition: left 0.5s;
}

.menu a:hover::before,
.menu a.active::before {
    left: 100%;
}

.menu a:hover,
.menu a.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Main Content */
.main-content {
    flex: 1;
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(52, 152, 219, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body:not(.theme-light) .main-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(52, 152, 219, 0.15);
}

.main-content:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-color);
    transition: all 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.9em;
}

.form-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.form-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color);
    padding: 22px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(52, 152, 219, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease, filter 0.4s ease;
    position: relative;
    overflow: hidden;
}

body:not(.theme-light) .form-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s;
}

.form-card:hover::before {
    left: 100%;
}

.form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(52, 152, 219, 0.75), 0 0 30px rgba(52, 152, 219, 0.55), inset 0 0 18px rgba(52, 152, 219, 0.25);
    border-color: var(--primary-color);
    filter: brightness(1.15) drop-shadow(0 0 18px rgba(52, 152, 219, 0.7));
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6), 0 0 20px rgba(52, 152, 219, 0.4);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.05);
}

.navbar .btn-secondary {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.navbar .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-danger {
    background: var(--error-color);
    color: white;
}

.btn-danger:hover {
    background: #d32f2f;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9em;
}

/* Inputs e selects inline (sem form-group) */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
input[type="number"],
select,
textarea {
    background: var(--bg-secondary);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    font-size: 1em;
    transition: all 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="date"]:hover,
input[type="datetime-local"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover {
    border-color: var(--primary-color);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

body:not(.theme-light) table {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.table-container:hover table {
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5), 0 0 15px rgba(52, 152, 219, 0.3);
    filter: brightness(1.08) drop-shadow(0 0 10px rgba(52, 152, 219, 0.4));
}

table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

table tbody tr {
    transition: all 0.3s ease;
}

table tbody tr:hover {
    background: var(--bg-secondary);
    transform: scale(1.01);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.2);
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 18px 0;
}

.stat-card {
    background: var(--card-bg) !important;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

body:not(.theme-light) .stat-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 45px rgba(52, 152, 219, 0.85), 0 0 35px rgba(52, 152, 219, 0.65), inset 0 0 20px rgba(52, 152, 219, 0.25);
    border-color: var(--primary-color);
    background: var(--card-hover) !important;
    filter: brightness(1.18) drop-shadow(0 0 22px rgba(52, 152, 219, 0.9));
}

body:not(.theme-light) .stat-card:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--card-bg) 100%) !important;
    box-shadow: 0 15px 50px rgba(52, 152, 219, 1), 0 0 40px rgba(52, 152, 219, 0.7), inset 0 0 25px rgba(52, 152, 219, 0.3);
}

.stat-card:active {
    transform: translateY(-4px) scale(1.01);
}

.stat-card.highlight {
    background: linear-gradient(135deg, #27AE60, #229954);
    border-color: #27AE60;
    border-width: 3px;
    position: relative;
    color: white;
}

.stat-card.highlight h3 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.stat-card.highlight::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #27AE60, #229954);
    border-radius: 15px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.3;
        filter: blur(10px);
    }
    100% {
        opacity: 0.7;
        filter: blur(15px);
    }
}

.stat-card.highlight:hover {
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.7);
    transform: translateY(-10px) scale(1.05);
}

.stat-card.highlight small {
    display: block;
    margin-top: 8px;
    font-size: 0.75em;
}

.stat-card h3 {
    color: var(--text-muted);
    font-size: 1em;
    margin-bottom: 10px;
    opacity: 0.9;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.stat-card:hover h3 {
    color: var(--text-color);
}

.stat-value {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, text-shadow 0.3s;
}

.stat-card:hover .stat-value {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
}

/* Filter Section */
.filter-section {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.4s ease, filter 0.4s ease;
    position: relative;
    overflow: hidden;
}

body:not(.theme-light) .filter-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.filter-section:hover {
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.6), 0 0 20px rgba(52, 152, 219, 0.4), inset 0 0 15px rgba(52, 152, 219, 0.15);
    border-color: var(--primary-color);
    filter: brightness(1.1) drop-shadow(0 0 12px rgba(52, 152, 219, 0.5));
}

.filter-section h3 {
    margin-bottom: 15px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    color: var(--text-color);
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    transition: all 0.3s;
}

.close:hover {
    color: var(--primary-color);
    transform: scale(1.2) rotate(90deg);
}

/* Messages */
.success-message {
    background: rgba(39, 174, 96, 0.2);
    color: #27AE60;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid rgba(39, 174, 96, 0.5);
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.2);
}

.error-message {
    background: rgba(231, 76, 60, 0.2);
    color: #E74C3C;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid rgba(231, 76, 60, 0.5);
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.2);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert-success {
    background: rgba(39, 174, 96, 0.2);
    color: #27AE60;
    border-color: rgba(39, 174, 96, 0.5);
}

.alert-error {
    background: rgba(231, 76, 60, 0.2);
    color: #E74C3C;
    border-color: rgba(231, 76, 60, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .stats-cards {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}



