/* MartSela Profit Tracker - Modern Enhanced Stylesheet */

:root {
    /* Primary Colors - Sophisticated Palette */
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    
    /* Status Colors */
    --success: #16a34a;
    --success-light: #22c55e;
    --danger: #dc2626;
    --danger-light: #ef4444;
    --warning: #ea580c;
    --info: #0891b2;
    
    /* Neutral Scale - Modern grays */
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --light: #f8fafc;
    --light-secondary: #f1f5f9;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    
    /* Visual Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    --glow: 0 0 20px -2px rgb(37 99 235 / 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 2rem;
}

/* ========== NAVBAR ========== */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: translateX(4px);
}

/* ========== SUMMARY CARDS ========== */
.summary-card {
    border: none;
    border-radius: 16px;
    padding: 1.75rem;
    color: white;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    min-height: 140px;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--glow);
}

.summary-card:hover::before {
    top: -30%;
    right: -30%;
}

.summary-card.bg-success {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.summary-card.bg-danger {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.summary-card.bg-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.summary-card.bg-info {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.summary-card.bg-dark {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.summary-icon {
    font-size: 3rem;
    opacity: 0.85;
    flex-shrink: 0;
}

.summary-content {
    z-index: 2;
    position: relative;
}

.summary-content h6 {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.92;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.75rem;
}

.summary-content h4 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

/* ========== FILTER CARD ========== */
.card {
    border: none;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 1.75rem;
    background: white;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 1.75rem;
}

.card-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.3px;
}

.card-title i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ========== FORMS ========== */
.form-label {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--dark-secondary);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-control,
.form-select {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
    color: var(--dark);
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* ========== BUTTONS ========== */
.btn {
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* ========== METRIC CARDS ========== */
.metric-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.metric-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.metric-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.metric-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.metric-bar > div {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* ========== GAUGE SECTION (Health Check Badges) ========== */
.gauge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    align-items: stretch;
}

.gauge-col {
    flex: 1;
    min-width: 200px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gauge-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: var(--transition);
}

.gauge-col:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.gauge-col:hover::before {
    height: 6px;
}

/* Status-specific styling */
.gauge-col[data-status="excellent"]::before,
.gauge-col[data-status="good"]::before {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.gauge-col[data-status="fair"]::before {
    background: linear-gradient(90deg, #ea580c, #f97316);
}

.gauge-col[data-status="poor"]::before {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.gauge-col[data-status="excellent"],
.gauge-col[data-status="good"] {
    border-color: rgba(22, 163, 74, 0.2);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(34, 197, 94, 0.05));
}

.gauge-col[data-status="fair"] {
    border-color: rgba(234, 88, 12, 0.2);
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.05), rgba(249, 115, 34, 0.05));
}

.gauge-col[data-status="poor"] {
    border-color: rgba(220, 38, 38, 0.2);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(239, 68, 68, 0.05));
}

.gauge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-500);
    font-weight: 700;
    margin-bottom: 1rem;
}

.gauge-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0.75rem 0;
    letter-spacing: -0.5px;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    background: white;
    min-width: 150px;
}

.gauge-col[data-status="excellent"] .gauge-value,
.gauge-col[data-status="good"] .gauge-value {
    color: #16a34a;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(34, 197, 94, 0.1));
}

.gauge-col[data-status="fair"] .gauge-value {
    color: #ea580c;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(249, 115, 34, 0.1));
}

.gauge-col[data-status="poor"] .gauge-value {
    color: #dc2626;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
}

.gauge-subtext {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 0.75rem;
}

/* ========== METRIC ROWS ========== */
.metric-row-h {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
}

.metric-item:hover {
    background: white;
    box-shadow: var(--shadow);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.metric-item .metric-label {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
}

.metric-item .metric-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
}

/* ========== STAT CARDS ========== */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-card .stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.stat-card .stat-header i {
    font-size: 1.3rem;
}

.stat-card .stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    align-items: center;
}

.stat-card .stat-row:last-child {
    border-bottom: none;
}

.stat-card .stat-label {
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 500;
}

.stat-card .stat-amount {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

/* ========== PRODUCT LIST ========== */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    transition: var(--transition);
}

.product-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateX(4px);
}

.product-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.product-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.product-value {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
}

/* ========== TABLES ========== */
.table {
    background: white;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
}

.table thead {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid var(--gray-200);
}

.table thead th {
    font-weight: 700;
    color: var(--dark);
    padding: 1.25rem;
    border: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.6px;
}

.table tbody td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
    color: var(--dark-secondary);
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.table-responsive {
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

/* ========== BADGES ========== */
.badge {
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-success {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(34, 197, 94, 0.15));
    /*color: var(--success);*/
}

.badge.bg-danger {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(239, 68, 68, 0.15));
    /*color: var(--danger);*/
}

.badge.bg-primary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.15));
    /*color: var(--primary);*/
}

.badge.bg-warning {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.15), rgba(249, 115, 22, 0.15));
    /*color: var(--warning);*/
}

/* ========== ALERTS ========== */
.alert {
    border: none;
    border-radius: 10px;
    border-left: 4px solid;
    padding: 1.25rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.alert-success {
    border-left-color: var(--success);
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(34, 197, 94, 0.1));
    color: var(--success);
}

.alert-danger {
    border-left-color: var(--danger);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    color: var(--danger);
}

.alert-info {
    border-left-color: var(--info);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--info);
}

/* ========== PROGRESS BARS ========== */
.progress {
    border-radius: 10px;
    background: var(--gray-200);
    overflow: hidden;
    height: 6px;
}

.progress-bar {
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== NAVIGATION ========== */
.nav-pills .nav-link {
    color: var(--dark-secondary);
    border-radius: 10px;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-pills .nav-link:hover {
    background: var(--light-secondary);
    color: var(--primary);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* ========== UTILITY CLASSES ========== */
.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-info {
    color: var(--info) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-muted {
    color: var(--gray-500) !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

/* ========== MODAL ========== */
.modal-content {
    border: none;
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, var(--light) 0%, #f1f5f9 100%);
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding-bottom: 1rem;
    }

    .container-fluid {
        padding: 1rem 0.75rem;
    }

    .summary-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 1.5rem;
        gap: 1rem;
    }

    .summary-icon {
        font-size: 2.5rem;
    }

    .summary-content h4 {
        font-size: 1.75rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .gauge-row {
        gap: 1rem;
    }

    .gauge-col {
        flex: 1;
        min-width: 160px;
        padding: 1.25rem 1rem;
    }

    .gauge-label {
        font-size: 0.65rem;
        letter-spacing: 0.7px;
    }

    .gauge-value {
        font-size: 1.8rem;
        padding: 0.6rem 1rem;
    }

    .gauge-subtext {
        font-size: 0.8rem;
    }

    .metric-row-h {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .metric-card {
        padding: 1.25rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .product-item {
        gap: 0.75rem;
        padding: 1rem;
    }

    .product-rank {
        width: 36px;
        height: 36px;
    }

    .form-label {
        font-size: 0.75rem;
    }

    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .table thead th,
    .table tbody td {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }

    .nav-pills {
        flex-wrap: wrap;
    }

    .nav-pills .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: auto;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .metric-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 13px;
    }

    .summary-card {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .summary-icon {
        font-size: 2rem;
    }

    .summary-content h4 {
        font-size: 1.4rem;
    }

    .summary-content h6 {
        font-size: 0.7rem;
    }

    .card-body {
        padding: 1rem;
    }

    .card-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .gauge-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .gauge-col {
        min-width: 100%;
        padding: 1.25rem 1rem;
    }

    .gauge-label {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }

    .gauge-value {
        font-size: 1.6rem;
        padding: 0.6rem 1rem;
        margin: 0.5rem 0;
    }

    .gauge-subtext {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    .metric-row-h {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .metric-item {
        padding: 0.75rem;
    }

    .metric-item .metric-label {
        font-size: 0.65rem;
    }

    .metric-item .metric-number {
        font-size: 1.1rem;
    }

    .metric-card {
        padding: 1rem;
    }

    .metric-value {
        font-size: 1.6rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card .stat-header {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .stat-card .stat-row {
        padding: 0.5rem 0;
    }

    .stat-card .stat-label {
        font-size: 0.75rem;
    }

    .stat-card .stat-amount {
        font-size: 0.9rem;
    }

    .product-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .product-rank {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .product-meta {
        font-size: 0.7rem;
    }

    .product-value {
        font-size: 0.95rem;
    }

    .form-control,
    .form-select {
        font-size: 0.85rem;
        padding: 0.55rem;
    }

    .form-label {
        font-size: 0.7rem;
    }

    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .btn-sm {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .table thead th,
    .table tbody td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }

    .nav-pills .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }
}