.top-bar {
    position: sticky;
    top: 0;
    background-color: #1e293b;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-bar a {
    display: inline-flex; 
    align-items: center;
}

.top-bar .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-left: 0.3rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logout-button {
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex; 
    align-items: center; 
    gap: 0.2rem;
}

.logout-button:hover {
    background-color: #dc2626;
}

.logout-button div {
    font-size: 14px;
}
