.project-dropdown-container {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 950;
    pointer-events: auto;
}

/* When a header row is both an item and a group label, use the gray header color */
.project-dropdown__item.project-dropdown__group-label {
    color: #999;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-dropdown__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 12px;
    min-width: 220px;
    border-radius: 12px;
    border: none;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.project-dropdown__labels {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.project-dropdown__client {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.project-dropdown__project {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.project-dropdown__chevron {
    font-size: 14px;
}

.project-dropdown__panel {
    margin-top: 6px;
    padding: 8px;
    width: 260px;
    max-height: 260px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    display: none;
}

.project-dropdown__panel.is-open {
    display: block;
}

.project-dropdown__group-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    margin: 4px 0;
}

.project-dropdown__item {
    width: 100%;
    text-align: left;
    padding: 6px 4px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.project-dropdown__item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.project-dropdown__item--selected::after {
    content: "\2713";
    float: right;
    color: #999;
}
