.nav-container { 
    width: 100%; 
    font-family: Arial, sans-serif;
}

.nav-top-bar { 
    background-color: #005ce6; 
    padding: 6px 0;
}

.nav-inner {
    max-width: 950px; 
    margin: 0 auto; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-left {
    display: flex;
    align-items: flex-end; 
    gap: 15px;
}

.nav-logo { height: 40px; }

.logged-in-text { 
    color: white; 
    font-size: 11px; 
    margin-bottom: 5px; 
}

.nav-blue-bar {
    background: linear-gradient(to bottom, #1a8cff 0%, #0066cc 100%);
    padding: 8px 0;
    text-align: center;
    border-top: 1px solid #66b3ff;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    margin: 0 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); 
}

.nav-links a:hover { text-decoration: underline; }
.stats-box, .auth-box {
    background: linear-gradient(to bottom, #f2f2f2 0%, #cccccc 50%, #b3b3b3 51%, #999999 100%);
    border: 1px solid #444;
    border-radius: 4px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.8);
}

.stat-item { 
    display: flex; 
    align-items: center; 
    gap: 5px; 
    font-weight: bold; 
    font-size: 12px; 
    color: #000;
}
.stat-item img { height: 18px; }

.not-member { font-size: 11px; color: #000; margin: 0 5px; }
.nav-btn { height: 24px; cursor: pointer; border: none; background: none; }

.logout-btn {
    background: linear-gradient(to bottom, #999 0%, #777 50%, #555 51%, #333 100%);
    border: 1px solid #222;
    color: white;
    border-radius: 4px;
    padding: 2px 10px;
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.logout-btn:hover { background: linear-gradient(to bottom, #aaa 0%, #888 50%, #666 51%, #444 100%); }