/* Global Project Selector Styles */

.global-project-selector {
    display: flex;
    align-items: center;
    margin-left: 2rem;
    color: white;
}

.project-title-text {
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.project-select-dropdown {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    min-width: 200px;
    max-width: 300px;
}

.project-select-dropdown option {
    background: white;
    color: #333;
    padding: 0.5rem;
}

.project-select-dropdown:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Responsive design */
@media (max-width: 768px) {
    .global-project-selector {
        margin-left: 1rem;
    }
    
    .project-title-text,
    .project-select-dropdown {
        max-width: 150px;
        font-size: 0.8rem;
    }
} 