* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
}

.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

Header {
    background: rgb(6, 53, 68);
    padding: 1rem;
    color: white;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.navbar a.active {
    color: white;
}

#user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#signout-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

#signout-btn:hover {
    background: #45a049;
} 
