/* universal.css - Golden Peacock Theme */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: #004080;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

nav {
    background-color: #002b5c;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
    color: white;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #f2c100; /* Golden highlight */
}

footer {
    background-color: #002b5c;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 30px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #004d40;
    padding: 15px 30px;
    color: gold;
}

.nav-brand a {
    color: gold;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links a {
    margin: 0 10px;
    color: gold;
    text-decoration: none;
    font-weight: bold;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid gold;
}
.footer {
    background-color: #004d40;  /* Dark Peacock Green */
    color: gold;                /* Gold text */
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    border-top: 2px solid gold;
    margin-top: 40px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}
