/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    /* Colors - LIGHT THEME */
    --primary: #0088cc;
    /* Darker blue for light bg */
    --primary-hover: #006699;
    --secondary: #5e27cd;
    --dark-bg: #f4f6f9;
    /* Light Gray Background */
    --card-bg: #ffffff;
    /* White Cards */
    --text-color: #333333;
    /* Dark Text */
    --text-muted: #6c757d;
    /* Muted Gray */
    --border-color: #e9ecef;
    /* Light Border */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: #dfe6e9;

    /* Dashboard Specific */
    --sidebar-width: 260px;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--dark-bg);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* =========================================
   2. LOGIN PAGE STYLES
   ========================================= */

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: #f4f6f9;
    /* Light background */
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.login-page::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    /* Reduced opacity */
    top: -50px;
    left: -50px;
    border-radius: 50%;
    animation: float 10s infinite alternate;
}

.login-page::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    filter: blur(180px);
    opacity: 0.08;
    /* Reduced opacity */
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    animation: float 12s infinite alternate-reverse;
}

/* ... float animation ... */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    /* White background */
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
    border-radius: 16px;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 10;
    margin: 20px;
}

.login-logo {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.login-logo a {
    color: #333;
    /* Dark text */
}

.login-logo b {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-box-msg {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Form Styles */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background: #ffffff;
    /* White background for inputs */
    border: 1px solid #ced4da;
    /* Standard Bootstrap-like border */
    color: #495057;
    /* Dark gray text */
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.15);
    /* Primary shadow */
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: 0.3s;
}

.form-control:focus+.input-icon {
    color: var(--primary);
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), #00a8c2);
    border: none;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 224, 255, 0.2);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 224, 255, 0.3);
    background: linear-gradient(135deg, #00bdd6, var(--primary));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   3. DASHBOARD PAGE STYLES
   ========================================= */

body.admin-body {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: #ffffff;
    /* White Sidebar */
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.logo {
    padding: 0 0.5rem;
    margin-bottom: 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #333;
    /* Dark text */
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    /* Align with header roughly */
}

.logo span {
    color: var(--primary);
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Fix for scrolling menu */
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 20px;
    min-height: 0;
    /* Important for firefox flexbox scrolling */
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: var(--text-muted);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: rgba(0, 136, 204, 0.1);
    /* Primary weak */
    color: var(--primary);
}

.admin-nav li a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.logout-btn {
    margin-top: auto;
    color: #e74c3c !important;
    /* Red */
}

.logout-btn:hover {
    background: rgba(231, 76, 60, 0.1) !important;
}

/* Header / Top Bar */
.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    height: var(--header-height);
    background: #ffffff;
    /* White Header */
    backdrop-filter: blur(10px);
    z-index: 900;
    border-bottom: 1px solid var(--border-color);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Content Area */
.admin-main,
.content-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    /* Restored to prevent overlap */
    margin-top: var(--header-height);
    padding: 0;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--dark-bg);
}

.search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    /* White bg for search */
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    width: 320px;
    transition: 0.3s;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.1);
}

.search-box input {
    background: transparent;
    border: none;
    color: #333;
    /* Dark text */
    margin-left: 10px;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.user-info {
    text-align: right;
}

.user-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    /* Dark text */
    margin: 0;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--primary);
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e9ecef;
    /* Light gray */
    border: 2px solid var(--primary);
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dashboard Stats Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.8rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s;
    /* backdrop-filter: blur(10px); Removed for cleaner light UI */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
}

.stat-info h3 {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    color: #333;
    /* Dark text */
    font-weight: 600;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ... existing stat-icon styles ... */

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-icon.visits {
    background: rgba(0, 136, 204, 0.1);
    color: var(--primary);
}

.stat-icon.messages {
    background: rgba(255, 159, 67, 0.1);
    color: #ff9f43;
    border: 1px solid rgba(255, 159, 67, 0.2);
}

.stat-icon.projects {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

/* Recent Activity Table */
.recent-activity {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    /* backdrop-filter: blur(10px); */
    overflow-x: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.flex-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    background: var(--primary);
    color: #fff;
    /* White text on primary btn */
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-sm:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

th {
    text-align: left;
    padding: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--border-color);
    /* Thicker border for header */
}

td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    color: #333;
    /* Dark text */
    font-size: 0.95rem;
}

tr:last-child td {
    border-bottom: none;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.status-badge.new {
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.status-badge.pending {
    background: rgba(255, 159, 67, 0.15);
    color: #ff9f43;
    border: 1px solid rgba(255, 159, 67, 0.2);
}

/* =========================================
   4. RESPONSIVE STYLES
   ========================================= */

/* =========================================
   6. MOBILE & DESKTOP MENU TOGGLE
   ========================================= */
.menu-toggle {
    display: block;
    /* Always show toggle */
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    margin-right: 15px;
}

/* Sidebar Collapse State (Desktop) */
body.sidebar-collapse .sidebar {
    width: 90px;
}

body.sidebar-collapse .sidebar .header-menu {
    display: none;
}

body.sidebar-collapse .sidebar .logo span,
body.sidebar-collapse .sidebar .admin-nav li a span,
body.sidebar-collapse .sidebar .user-info {
    display: none;
}

body.sidebar-collapse .sidebar .logo {
    justify-content: center;
    font-size: 0.8rem;
}

body.sidebar-collapse .sidebar .admin-nav li a {
    justify-content: center;
    padding: 15px;
}

body.sidebar-collapse .sidebar .admin-nav li a i {
    font-size: 1.4rem;
    margin: 0;
}

body.sidebar-collapse .main-header {
    left: 90px;
}

body.sidebar-collapse .content-wrapper,
body.sidebar-collapse .admin-main {
    margin-left: 90px;
}

/* Tooltip for Collapsed Menu */
body.sidebar-collapse .sidebar .admin-nav li {
    position: relative;
}

body.sidebar-collapse .sidebar .admin-nav li a {
    overflow: visible;
}

body.sidebar-collapse .sidebar .admin-nav li a:hover span {
    display: block !important;
    position: fixed;
    left: 90px;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin-left: 10px;
}

/* Tooltip Arrow */
body.sidebar-collapse .sidebar .admin-nav li a:hover span::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 5px 5px 0;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

/* Hide scrollbar when sidebar is collapsed to prevent it from covering icons */
body.sidebar-collapse .admin-nav::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

body.sidebar-collapse .admin-nav {
    overflow-y: auto;
    overflow-x: hidden;
}


/* =========================================
   4. RESPONSIVE STYLES
   ========================================= */

@media screen and (max-width: 900px) {
    :root {
        --sidebar-width: 0px;
        /* Hide sidebar space on tablet/mobile default */
    }

    .sidebar {
        left: -260px;
        /* Hide completely */
        width: 260px;
        z-index: 2000;
        transition: left 0.3s ease;
    }

    .sidebar.show-sidebar {
        left: 0;
        /* Slide in */
    }

    .main-header {
        left: 0;
        width: 100%;
        padding-left: 15px;
    }

    .content-wrapper {
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
        /* Show burger icon */
    }

    /* Adjustments for when Sidebar is open (Overlay effect optional, using shadow) */
    .sidebar.show-sidebar {
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
}

@media screen and (max-width: 600px) {

    /* Reset Mobile Bottom Bar Styles (Override previous changes) */
    .admin-body {
        flex-direction: row;
        /* Keep standard layout logic */
        overflow: hidden;
    }

    .sidebar {
        position: fixed;
        top: 0;
        height: 100vh;
        flex-direction: column;
        /* Vertical list again */
        justify-content: flex-start;
        padding: 20px;
        border-right: 1px solid var(--border-color);
        border-top: none;
        overflow-y: auto;
        overflow-x: hidden;
        white-space: normal;
        background: #fff;
    }

    .logo {
        display: flex;
        /* Show logo in sidebar */
        margin-bottom: 20px;
    }

    .admin-nav {
        flex-direction: column;
        /* Vertical list */
        padding: 0;
        display: block;
    }

    .admin-nav li {
        width: 100%;
    }

    .admin-nav li a {
        flex-direction: row;
        /* Icon + Text side by side */
        justify-content: flex-start;
        padding: 12px 15px;
        font-size: 1rem;
    }

    .admin-nav li a i {
        font-size: 1.1rem;
        width: 25px;
        text-align: center;
    }

    .admin-nav li a span {
        display: inline-block;
        /* Show text */
        font-size: 1rem;
        margin-top: 0;
    }

    .logout-btn {
        display: block;
        /* Show logout */
        margin-top: 20px;
    }

    .content-wrapper {
        padding-bottom: 20px;
        /* Normal padding */
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .search-box {
        width: 100%;
        /* Full width search on mobile header */
        max-width: 200px;
    }

    /* Modal mobile fixes */
    .modal-admin .modal-dialog {
        width: 90% !important;
        margin: 20px auto !important;
    }
}

/* =========================================
   5. DROPDOWN STYLES
   ========================================= */
.profile-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    background: var(--card-bg);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: slideDown 0.2s ease-out;
}

.profile-dropdown-content.show {
    display: block;
}

.dropdown-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: #333;
    /* Dark text */
    font-size: 0.9rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-muted);
    transition: 0.2s;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(0, 224, 255, 0.1);
    color: var(--primary);
}

.dropdown-item.logout {
    color: #ff5b5b;
}

.dropdown-item.logout:hover {
    background: rgba(255, 91, 91, 0.1);
    color: #ff5b5b;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   6. USERS MODULE STYLES
   ========================================= */

.table-admin {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table-admin thead tr {
    background: rgba(0, 224, 255, 0.1);
}

.table-admin th {
    padding: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
}

.table-admin td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    color: var(--text-color);
}

.table-admin tr:last-child td {
    border-bottom: none;
}

.table-admin tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Buttons in Table */
.btn-xs {
    padding: 6px 10px;
    font-size: 0.8rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* Ensure text is visible on colored buttons */
}

.btn-success {
    background: #28a745;
    /* Bootstrap green */
    color: #fff;
    border: 1px solid #28a745;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
    /* Bootstrap red */
    color: #fff;
    border: 1px solid #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-warning {
    background: #ffc107;
    /* Bootstrap yellow */
    color: #212529;
    /* Dark text for yellow bg */
    border: 1px solid #ffc107;
}

.btnEditarUsuario {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btnEditarUsuario:hover {
    background: var(--primary-hover);
}

/* Modal Styles */
.modal-admin {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Lighter backdrop */
    z-index: 9999;
    /* justify-content: center; REMOVED to allow scroll */
    /* align-items: center; REMOVED to allow scroll */
    /* Use flex-start to prevent 'stretch' (default) from forcing height:100% on dialog */
    /* This allows dialog to grow naturally and overflow to trigger scroll */
    align-items: flex-start;
    backdrop-filter: blur(2px);
    opacity: 0;
    animation: fadeIn 0.3s forwards;

    /* Enable Scrolling */
    overflow-y: auto;
    padding: 20px 0;
    /* Add proper vertical spacing */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.modal-dialog {
    background: #ffffff;
    /* White modal */
    width: 90%;
    max-width: 500px;
    margin: 30px auto;
    /* Centering with margin instead of flex */
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /* Restored to prevent gaps/transparency issues at corners or between elements */
    position: relative;
    /* Ensure it stacks correctly */
    transform: scale(0.95);
    animation: zoomIn 0.3s forwards;
    display: flex;
    /* Ensure it behaves as a container */
    flex-direction: column;
    /* Stack children vertically */
}

/* Ensure direct children fill the width and have backgrounds */
.modal-admin .modal-dialog>form,
.modal-admin .modal-dialog>.modal-content {
    background: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    /* Light header bg */
}

.modal-title {
    color: #333;
    /* Dark text */
    font-size: 1.2rem;
    font-weight: 600;
}

.close-modal-admin {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
}

.close-modal-admin:hover {
    color: #dc3545;
    /* Red on hover */
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: #f8f9fa;
    /* Light footer bg */
}

.panel {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.help-block {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}