﻿.dashboard-header {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #AAC0C9; /* Dark Slate 30% */
}

.header-welcome {
    display: flex;
    flex-direction: column;
}

.welcome-text {
    font-size: 24px;
    font-weight: 600;
    color: #268B57; 
}

.company-name {
    color: #02455F; 
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-container {
    position: relative;
}

.search-container .icon-search {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #5B5B5B; /* Black 60% */
}

.search-input {
    padding: 8px 12px 8px 36px;
    border: 1px solid #AAC0C9; /* Dark Slate 30% */
    border-radius: 10px;
    width: 260px;
}

.client-dropdown {
    padding: 8px 12px;
    border: 1px solid #AAC0C9; /* Dark Slate 30% */
    border-radius: 4px;
}

.header-icon-button {
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 4px;
    color: #02455F;
}

.header-icon-button:hover {
    background-color: #B4EAED; /* Lupquise 30% */
}
/* Voor de notification badge */
.notification-badge {
    top: -5px;
    right: -5px;
    background-color: #02455F; /* Red */
    color: #FFFFFF; /* White */
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 9999px;
    min-width: 18px;
    text-align: center;
}
/* Voor de profile dropdown */
.profile-dropdown {
    position: relative;
}

.profile-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #FFFFFF; /* White */
    border: 1px solid #AAC0C9; /* Dark Slate 30% */
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
}

.profile-dropdown-menu.show {
    display: block;
}

.profile-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #02455F; /* Dark Slate */
    text-decoration: none;
}

.profile-dropdown-menu a:hover {
    background-color: #B4EAED; /* Lupquise 30% */
}

.divider {
    height: 1px;
    color: #359C75; /* MidGreen */
    margin: 4px 0;
}

#SelectedCurrentClient {
    padding: 10px;
    background-color: #FFFFFF;
    border: 1px solid #AAC0C9; /* Dark Slate 30% */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(2, 69, 95, 0.05); /* Dark Slate met transparantie */
    width: 300px;
}
