/* General reset for margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #4CAF50; /* Customize this color */
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Title styling */
header h1 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600; /* Bold title */
}

/* Navigation bar */
.top-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
}

/* Left navigation links */
.nav-left {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between each link */
}

.nav-left li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-left li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Light hover effect */
}

/* Logout button styling */
.logout-button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 10px 25px; /* Adjusted padding for prominence */
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: auto; /* Pushes button to the far right */
}

.logout-button:hover {
    background-color: #e60000; /* Darker red on hover */
}


