:root {
    --bg-color: #f1f5f9;
    --card-bg: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    --sidebar-bg: #f58c0c;
    --sidebar-hover: #e1eb25;
    --sidebar-text: #feebbf;
    --sidebar-active: #ebb625;

    --primary: #f6ae13;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --orange: #f97316;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
}

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

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--sidebar-bg);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.sidebar-title .subtitle {
    font-size: 0.75rem;
    color: var(--sidebar-text);
}

.text-white {
    color: white;
}

.sidebar-section {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-section label {
    display: block;
    font-size: 0.75rem;
    color: var(--sidebar-text);
    margin-bottom: 0.5rem;
}

.year-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.year-selector select {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

.year-selector select option {
    color: #333;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 1rem;
    color: var(--sidebar-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    font-size: 0.95rem;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.nav-item.active {
    background-color: white;
    color: var(--sidebar-bg);
    font-weight: 500;
}

.sidebar-footer {
    padding: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem;
    overflow-x: hidden;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Dashboard View */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.stat-card.border-orange {
    border-color: #fdba74;
}

.stat-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-value-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1;
    color: #1e293b;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chart Area */
.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.chart-container {
    flex: 1;
    position: relative;
    width: 100%;
    min-height: 250px;
}

.pie-container {
    min-height: 200px;
    display: flex;
    justify-content: center;
}

/* Lists Area */
.tables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.table-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #1e293b;
}

.instansi-list-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.simple-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.simple-item.best {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.simple-item.worst {
    background: #fef2f2;
    border-color: #fee2e2;
}

.item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-rank {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.rank-best {
    background: var(--success);
}

.rank-worst {
    background: var(--danger);
}

.item-info h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    color: #1e293b;
}

.item-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.item-right {
    text-align: right;
}

.item-progress {
    font-weight: 600;
    font-size: 0.95rem;
}

.item-fraction {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Monitoring View */
.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 400px;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 0.9rem;
}

.status-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-color);
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: #e2e8f0;
}

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

.instansi-header-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.monitoring-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Complex Monitoring Card */
.monitor-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.monitor-card-header {
    padding: 1.5rem;
}

.monitor-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.monitor-instansi-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.monitor-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.monitor-name h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
}

.monitor-name span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.monitor-progress-wrapper {
    margin-bottom: 0.75rem;
}

.monitor-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.monitor-progress-label .progress-percent {
    font-weight: 600;
}

.monitor-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.monitor-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.monitor-card-action {
    padding: 0.75rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.monitor-card-action:hover {
    background: #f8fafc;
}

.monitor-card-detail {
    display: none;
    padding: 1.5rem;
    border-top: 1px dashed var(--border-color);
    background: #fafafa;
}

.monitor-card.open .monitor-card-detail {
    display: block;
}

.monitor-card.open .fa-chevron-down {
    transform: rotate(180deg);
}

/* Checklist */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.check-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.check-icon {
    margin-top: 2px;
}

.check-icon.done {
    color: var(--success);
}

.check-icon.pending {
    color: #cbd5e1;
}

.check-title {
    font-size: 0.85rem;
    font-weight: 500;
}

.check-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Utilities */
.progress-container {
    width: 100%;
    height: 6px;
    background-color: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.bg-green {
    background-color: var(--success) !important;
}

.bg-blue {
    background-color: var(--primary) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-red {
    background-color: var(--danger) !important;
}

.bg-green-light {
    background-color: #dcfce7;
}

.bg-blue-light {
    background-color: #dbeafe;
}

.bg-purple-light {
    background-color: #f3e8ff;
}

.text-green {
    color: var(--success) !important;
}

.text-blue {
    color: var(--primary) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.text-red {
    color: var(--danger) !important;
}

.icon-blue {
    color: #3b82f6;
}

.icon-purple {
    color: #8b5cf6;
}

.icon-green {
    color: #10b981;
}

.icon-orange {
    color: var(--orange);
}

.mt-2 {
    margin-top: 0.5rem;
}

/* Badges */
.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}

.status-badge.sangat-baik {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.status-badge.baik {
    background: #dbeafe;
    color: #1e3a8a;
    border-color: #bfdbfe;
}

.status-badge.perlu-perhatian {
    background: #fef3c7;
    color: #92400e;
    border-color: #fde68a;
}

.status-badge.kritis {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

/* Loading */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .app-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1rem;
    }

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

    .tables-grid {
        grid-template-columns: 1fr;
    }

    .filter-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .search-box {
        max-width: none;
    }
}

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

/* Landing Page Styles */
.landing-page {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    display: block; /* default */
    position: relative;
}

.landing-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: transparent;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.landing-navbar.scrolled {
    background-color: #1e293b;
    padding: 1rem 4rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.landing-logo .logo-text strong {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.landing-logo .logo-text span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.landing-menu a {
    color: white;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.landing-menu a:hover {
    opacity: 1;
}

.landing-actions .btn-login {
    background: var(--orange);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.landing-actions .btn-login:hover {
    transform: translateY(-2px);
    background: #ea580c; /* Slightly darker orange */
}

.landing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 4rem 14rem 4rem;
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn-primary {
    background: var(--orange);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.hero-buttons .btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Stats Section */
.landing-stats-section {
    padding: 5rem 4rem;
    background: white;
}

.section-header.text-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
}

.stats-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card-landing {
    background: white;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card-landing:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
}

.stat-card-landing h3 {
    font-size: 2rem;
    color: #2b54d6;
    margin-bottom: 0.5rem;
}

.stat-card-landing p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.bg-orange-light { background-color: #ffedd5; }
.text-orange { color: #f97316; }

/* Status Section */
.landing-status-section {
    padding: 2rem 4rem 5rem 4rem;
    background: white;
}

.status-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.status-info h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.status-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.status-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-bar-row .label {
    width: 120px;
    font-size: 0.9rem;
    color: #334155;
}

.status-bar-row .bar-track {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.status-bar-row .bar-fill {
    height: 100%;
    border-radius: 4px;
}

.status-bar-row .count {
    width: 30px;
    text-align: right;
    font-weight: 600;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.status-card-box {
    background: white;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.status-card-box.border-green { border-color: #bbf7d0; }
.status-card-box.border-blue { border-color: #bfdbfe; }
.status-card-box.border-orange { border-color: #fed7aa; }
.status-card-box.border-red { border-color: #fecaca; }

.status-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.status-card-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

/* Login Page */
.login-page {
    width: 100%;
    min-height: 100vh;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 450px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header i {
    color: #2b54d6;
    margin-bottom: 1rem;
}

.login-header h2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}

.login-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.login-form input:focus {
    border-color: #2b54d6;
}

.w-100 {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
}

.login-back {
    margin-top: 1.5rem;
    text-align: center;
}

.login-back a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.login-back a:hover {
    color: #2b54d6;
}

.custom-footer {
    padding: 20px 0;
    text-align: center;
    font-family: 'Inter', sans-serif; /* Mengikuti font bawaan project Anda */
    background-color: #ffffff; /* Warna latar (bisa disesuaikan transparan jika perlu) */
    color: #333333;
    margin-top: auto; /* Membantu mendorong footer ke bawah jika konten sedikit */
}

.copyright-text {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #2b2b2b;
}

.copyright-text strong {
    color: #000000; /* Membuat teks 'Web Desa Cantik' lebih tegas */
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Jarak antara logo dan teks */
    font-size: 15px;
    color: #004d80; /* Warna biru khas, bisa diganti ke #000 jika ingin hitam pekat */
}

.footer-logo {
    height: 24px; /* Menyesuaikan tinggi logo agar sejajar dengan teks */
    width: auto;
    object-fit: contain;
}