/* Common styles for all pages */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Navbar styles */
.navbar {
    background: #1a2332;
    border-bottom: 1px solid #2d3748;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 32px;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-link {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-link:hover {
    color: #ffffff;
}

.navbar-link.active {
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid #4299e1;
    padding-bottom: 2px;
}

.navbar-viewing-label {
    color: #a0aec0;
    font-size: 13px;
    font-weight: 400;
    padding: 4px 12px;
    background: rgba(45, 55, 72, 0.6);
    border-radius: 6px;
    border: 1px solid #2d3748;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-viewing-label::before {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
}

.navbar-user-id {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logout,
.navbar-login {
    background: #2d3748;
    border: 1px solid #4a5568;
    color: #e2e8f0;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.navbar-logout:hover,
.navbar-login:hover {
    background: #4a5568;
    color: #ffffff;
    border-color: #718096;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .navbar-container {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 20px;
    }

    .navbar-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
        padding-top: 12px;
        border-top: 1px solid #2d3748;
        margin-top: 12px;
    }
}
