.custom-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.custom-header__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-header__branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-header__logo {
    height: 40px;
}

.custom-header__title {
    margin: 0;
    font-weight: bold;
    color: #007bff;
}

.custom-header__nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-header__nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.custom-header__logout {
    background: none;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
}
