body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f2f3f5;
    color: #333;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #6b7a8a; /* was #3a4750 */
    color: white;
    padding: 5px 10px; /* 10px 20px; */
}

.logo-title h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;          /* desktop size */
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.35); /* subtle stylish shadow */
}



.logo {
    height: 100px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* NEW: smaller logo on mobile */
    .logo {
        height: 60px;
    }
	/* NEW smaller font on mobile */
	.logo-title h1 {
    font-size: 22px; /* mobile size */
	text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
	}
}


.logo-title {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
}

/* Layout */
.layout {
    display: flex;
    height: calc(100vh - 120px);
}

/* Sidebar */
.sidebar {
    width: 220px;
    background: #8a97a6; /* was #2f3640 */
    color: white;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar a {
    display: block;
    padding: 10px 20px;
    color: #f4f4f4; /* was #dcdde1 */
    text-decoration: none;
    transition: background 0.2s;
}

.sidebar a:hover {
    background: #9aa7b5; /* was #414b57 */
}

/* Submenu */
.has-submenu > .submenu {
    display: none;
    background: #9aa7b5; /* was #353b48 */
}

.has-submenu:hover > .submenu {
    display: block;
}

/* Content */
.content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: white;
    border-left: 1px solid #ddd;
}

/* Footer */
.site-footer {
    background: #6b7a8a; /* was #3a4750 */
    color: white;
    text-align: center;
    padding: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}
