@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Color Palette */
    --bg-app: #f4f6fc;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --primary-hover: #1d4ed8;
    
    --success: #10b981;
    --success-light: #ecfdf5;
    
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    
    --danger: #ef4444;
    --danger-light: #fef2f2;
    
    --border-color: #e2e8f0;
    --sidebar-width: 280px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 25px -5px rgba(37, 99, 235, 0.05), 0 8px 10px -6px rgba(37, 99, 235, 0.05);
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-app);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Authentication Screen (Login / Register / Verify) */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    position: relative;
}

.auth-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 440px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 10;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    border-radius: var(--border-radius-md);
    color: white;
    font-size: 28px;
    margin-bottom: 16px;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 4px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: #f8fafc;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: #f8fafc;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-secondary);
}

.auth-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

/* App Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling matching the first image */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-card);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 24px 16px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-left: 8px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    border-radius: var(--border-radius-md);
    color: white;
    font-size: 22px;
    box-shadow: 0 8px 12px -3px rgba(37, 99, 235, 0.25);
}

.sidebar-app-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    line-height: 1.2;
}

.sidebar-version {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 2px;
    text-transform: uppercase;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #475569;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.menu-item i {
    font-size: 18px;
    color: #64748b;
    transition: all 0.2s ease;
}

.menu-item:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

.menu-item.active {
    background-color: #e0f2fe; /* Light blue */
    color: var(--primary);
    font-weight: 600;
}

.menu-item.active i {
    color: var(--primary);
}

/* Sidebar Stats matching image */
.sidebar-stats {
    background-color: #f8fafc;
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--border-color);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f1f5f9;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-size: 16px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Profile Bar matching bottom of sidebar */
.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.profile-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.profile-name {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role {
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-logout {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: var(--border-radius-sm);
    transition: all 0.2s ease;
}

.btn-logout:hover {
    color: var(--danger);
    background-color: var(--danger-light);
}

/* Main Content Area */
.main-content {
    margin-left: var(--sidebar-width);
    flex-grow: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 32px;
    position: relative;
}

/* Header Action Section with Search and Add */
.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    background-color: #f1f5f9;
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    background-color: white;
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 14px;
}

.btn-add {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
}

.btn-add:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Section Titles */
.section-title-wrapper {
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Data Tables */
.table-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

.data-table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 700;
    padding: 14px 20px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
}

.data-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Color indicator dot */
.color-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.color-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Badge Style */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-success {
    background-color: var(--success-light);
    color: var(--success);
}

.badge-warning {
    background-color: var(--warning-light);
    color: var(--warning);
}

.badge-danger {
    background-color: var(--danger-light);
    color: var(--danger);
}

.badge-info {
    background-color: #f0fdfa;
    color: #0d9488;
}

/* Table Row Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-action {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-muted);
    transition: all 0.15s ease;
}

.btn-action-edit:hover {
    color: var(--primary);
}

.btn-action-delete:hover {
    color: var(--danger);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(0.95);
    transition: transform 0.2s ease;
    overflow: hidden;
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.btn-close-modal {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
}

.btn-close-modal:hover {
    color: var(--danger);
}

.modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 16px 24px;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Two column layout inside forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Simulated Email Client Modal (for code verification) */
.email-simulator {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary);
    z-index: 2000;
    overflow: hidden;
    transform: translateY(120%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.email-simulator.visible {
    transform: translateY(0);
}

.email-simulator-header {
    background-color: var(--primary);
    color: white;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-simulator-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.email-simulator-body {
    padding: 16px;
    font-size: 12px;
}

.email-bubble {
    background-color: #f1f5f9;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    margin-top: 8px;
    border-left: 3px solid var(--primary);
}

.email-code-display {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: var(--primary);
    margin: 12px 0;
    letter-spacing: 4px;
}

/* Empty State Styling */
.empty-state {
    padding: 48px;
    text-align: center;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.empty-state-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

/* Custo de Venda Calculator Specific Layout */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

.summary-card {
    background-color: #f8fafc;
    border-radius: var(--border-radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
}

.summary-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
}

.summary-total {
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
}

.suggested-price {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--border-radius-sm);
    padding: 16px;
    margin-top: 16px;
    text-align: center;
}

.suggested-price-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.suggested-price-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 4px;
}

/* Admin Users view status badge */
.user-status-pill {
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 12px;
    font-weight: 600;
}
.user-status-active {
    background-color: var(--success-light);
    color: var(--success);
}
.user-status-blocked {
    background-color: var(--danger-light);
    color: var(--danger);
}
.user-status-pending {
    background-color: var(--warning-light);
    color: var(--warning);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    border: none;
}
.btn-sm-danger {
    background-color: var(--danger);
    color: white;
}
.btn-sm-success {
    background-color: var(--success);
    color: white;
}
.btn-sm-primary {
    background-color: var(--primary);
    color: white;
}
.btn-sm-secondary {
    background-color: var(--bg-app);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

/* Mobile responsive styles */
.mobile-navbar {
    display: none;
    height: 60px;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0 16px;
    align-items: center;
    gap: 16px;
}

.btn-mobile-menu {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: var(--border-radius-sm);
}

.btn-mobile-menu:hover {
    background-color: #f1f5f9;
}

.mobile-navbar-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.4);
    z-index: 95;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sidebar-backdrop.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    /* Show mobile navbar */
    .mobile-navbar {
        display: flex;
    }

    /* Shift main content down to accommodate fixed navbar */
    .main-content {
        margin-left: 0;
        padding: 16px;
        padding-top: 76px; /* 60px navbar + 16px padding */
    }

    /* Sidebar shifts offscreen */
    .sidebar {
        left: -280px;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: none;
        z-index: 100;
    }

    .sidebar.open {
        transform: translateX(280px);
        box-shadow: 10px 0 30px -10px rgba(0, 0, 0, 0.15);
    }

    /* Modals stack columns vertically */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Adjust padding of modals */
    .modal-card {
        max-width: 95%;
        margin: auto;
    }

    .modal-body {
        padding: 16px;
    }

    /* Adjust headers and buttons */
    .content-header {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 20px;
    }

    .search-container {
        max-width: none;
        flex-grow: 1;
    }

    /* Transform tables into beautiful responsive cards on mobile */
    .data-table thead {
        display: none;
    }

    .data-table, 
    .data-table tbody, 
    .data-table tr, 
    .data-table td {
        display: block;
        width: 100%;
    }

    .data-table tr {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-md);
        padding: 12px 16px;
        margin-bottom: 16px;
        box-shadow: var(--shadow-sm);
    }

    .data-table td {
        border: none;
        border-bottom: 1px dashed #f1f5f9;
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
    }

    .data-table td:last-child {
        border-bottom: none;
        padding-top: 12px;
        justify-content: flex-end;
    }

    .data-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-secondary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: left;
        display: block;
        margin-right: 16px;
    }

    /* Highlight the Venda (Sales suggested price) row in mobile cards */
    .data-table td[data-label="Venda"] {
        background-color: var(--primary-light) !important;
        padding: 10px 12px !important;
        border-radius: var(--border-radius-sm) !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        color: var(--primary) !important;
        margin: 6px 0 !important;
        border-bottom: none !important;
    }

    /* Collapsible Table Styles on Mobile */
    .table-collapsible tr {
        position: relative;
        cursor: pointer;
        padding-bottom: 44px !important;
        transition: padding-bottom 0.2s ease;
    }
    
    .table-collapsible tr.expanded {
        padding-bottom: 52px !important;
    }

    /* Hide 4th column and onwards by default when collapsed */
    .table-collapsible tr:not(.expanded) td:nth-child(n+4) {
        display: none !important;
    }

    /* Remove border-bottom from Marca (3rd cell) when collapsed */
    .table-collapsible tr:not(.expanded) td:nth-child(3) {
        border-bottom: none;
    }

    /* The interactive arrow */
    .table-collapsible tr::after {
        content: '\f078'; /* font-awesome fa-chevron-down */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        bottom: 12px;
        right: 16px;
        font-size: 14px;
        color: var(--primary);
        transition: transform 0.3s ease;
        background-color: var(--primary-light);
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: var(--shadow-sm);
    }

    .table-collapsible tr.expanded::after {
        content: '\f077'; /* font-awesome fa-chevron-up */
    }
}

/* Custom logo styling when uploaded by system settings */
.auth-logo.custom-logo {
    background: none !important;
    box-shadow: none !important;
    width: 250px !important;
    height: 100px !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    margin-bottom: 24px !important;
}

.auth-logo.custom-logo img {
    width: 250px !important;
    height: 100px !important;
    object-fit: contain !important;
}

.sidebar-logo.custom-logo {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: 44px !important;
    max-width: 120px !important;
}

.sidebar-logo.custom-logo img {
    height: 44px !important;
    max-width: 120px !important;
    object-fit: contain !important;
}

