/* schedulemeetaker.css */

/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.site-body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    background: #f7f9fc;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 1rem;
    flex: 1;
}

/* Navigation */

.nav {
    background-color: #004080;
    color: white;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand img.logo-img {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-links li a.active,
.nav-links li a:hover {
    text-decoration: underline;
}

/* Language switcher */
.lang-switcher-wrapper {
    position: relative;
}

.lang-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-menu {
    display: none;
    position: absolute;
    background: white;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    margin-top: 0.25rem;
    min-width: 80px;
    list-style: none;
    padding: 0.25rem 0;
    z-index: 1000;
}

.lang-menu li a {
    display: block;
    padding: 0.4rem 1rem;
    text-decoration: none;
    color: #333;
    font-weight: normal;
}

.lang-menu li a.active,
.lang-menu li a:hover {
    background-color: #004080;
    color: white;
}

/* Footer */

.footer {
    background-color: #004080;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Main content */

.page-content {
    margin-top: 1rem;
}

/* Responsive */

@media (max-width: 768px) {
    .nav-inner {
        flex-wrap: wrap;
    }
    .nav-toggle {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 0.5rem;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links li {
        margin: 0.5rem 0;
    }
}

