.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Title styling */
.headerText {
    margin: 0;
    font-size: 1.5rem;
    color: #2d3436;
    font-weight: 700;
    flex-grow: 1; /* Pushes buttons to the right */
}

/* User name styling */
#userName {
    margin: 0 20px;
    font-size: 1rem;
    color: #636e72;
    font-weight: 400;
}

/* Button styling */
.headerButton {
    background-color: #6c5ce7; /* Elegant Purple */
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.headerButton:hover {
    background-color: #a29bfe;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(108, 92, 231, 0.2);
}

/* Ensure links don't have underlines */
.header a {
    text-decoration: none;
}

/* Form alignment for Logout */
.header form {
    display: inline;
    margin: 0;
}
