/* Project selector styles */
.project-header {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.project-selector-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.project-selector-row label {
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

.project-selector-row select {
    flex: 1;
    min-width: 180px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.project-selector-row button {
    margin-left: 0;
}

/* Disabled state for delete button */
.btn-danger:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
