/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* DASHBOARD WRAPPER */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
    width: 250px;
    background: #0f172a;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Sidebar Title */
.sidebar h2 {
    margin-bottom: 30px;
}

/* Sidebar Menu */
.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 15px;
}

.sidebar-menu li a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.sidebar-menu li a:hover {
    background: #2563eb;
    color: #fff;
}

/* MAIN AREA */
.main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f1f5f9;
}

/* TOPBAR */
.topbar {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* CONTENT */
.content {
    padding: 30px;
}

/* CARDS */
.dashboard-cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* MOBILE */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {

    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        height: 100%;
        transition: 0.3s;
        z-index: 999;
    }

    .sidebar.active {
        left: 0;
    }

    .menu-btn {
        display: block;
    }

    .dashboard-wrapper {
        flex-direction: column;
    }
}

body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
}

.navbar {
    background: #0d1b2a;
    padding: 15px 0;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
}

.btn-primary {
    background: #fca311;
    padding: 6px 12px;
    border-radius: 4px;
    color: black;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
}

.lang-select {
    padding: 4px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #0d1b2a;
        position: absolute;
        top: 60px;
        width: 100%;
        left: 0;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.form-container {
    width: 400px;
    max-width: 90%;
    margin: 60px auto;
    text-align: center;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

.form-container button {
    width: 100%;
    padding: 10px;
    border: none;
    cursor: pointer;
}

#responseMsg {
    margin-top: 15px;
    font-weight: bold;
}
