.masteriq-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.masteriq-tabs .tab-button {
    padding: 10px 20px;
    background: #f1f1f1;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.masteriq-tabs .tab-button.active {
    background: #fff;
    border-bottom-color: #0073aa;
    color: #0073aa;
}

.masteriq-tabs .tab-button:hover {
    background: #e9e9e9;
}

.tab-content {
    padding: 20px 0;
}

.masteriq-albums, .masteriq-singles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.masteriq-album, .masteriq-single {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    background: #fff;
}

.masteriq-album h3, .masteriq-single h3 {
    margin-top: 0;
    color: #333;
}

.masteriq-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.masteriq-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.masteriq-btn-primary {
    background: #0073aa;
    color: white;
}

.masteriq-btn-primary:hover {
    background: #005a87;
}

.masteriq-btn-danger {
    background: #dc3232;
    color: white;
}

.masteriq-btn-danger:hover {
    background: #b22222;
}

.masteriq-upload-area {
    border: 2px dashed #ccc;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #f9f9f9;
}

.masteriq-upload-area.dragover {
    border-color: #0073aa;
    background: #f0f8ff;
}

.masteriq-file-list {
    margin-top: 20px;
}

.masteriq-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #eee;
    margin-bottom: 5px;
    border-radius: 3px;
    background: #fff;
}

.masteriq-file-item .file-name {
    flex-grow: 1;
}

.masteriq-file-item .file-actions {
    display: flex;
    gap: 5px;
}

.masteriq-processing {
    display: none;
    text-align: center;
    padding: 20px;
}

.masteriq-processing.active {
    display: block;
}

.masteriq-processing .spinner {
    margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .masteriq-tabs {
        flex-direction: column;
    }
    
    .masteriq-tabs .tab-button {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #ccc;
    }
    
    .masteriq-albums, .masteriq-singles {
        grid-template-columns: 1fr;
    }
}