/* Editor - Data Source Selector */

.data-source-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 15px;
    border-right: 1px solid #333;
}

.data-source-selector label {
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.data-source-selector select {
    background: #1a1a2e;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    min-width: 180px;
    font-size: 13px;
    cursor: pointer;
}

.data-source-selector select:hover {
    border-color: #00f3ff;
}

.data-source-selector select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-load-data {
    background: #00f3ff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    transition: all 0.2s ease;
}

.btn-load-data:hover {
    background: #00d4e6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 243, 255, 0.3);
}