/* Color Scheme Generator Styles */
.palette-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.palette-swatch {
    flex: 1;
    height: 120px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
}
.palette-swatch:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.palette-swatch .swatch-label {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.9);
    color: #1f2937;
}
.palette-swatch .swatch-label.dark-label {
    background: rgba(0,0,0,0.7);
    color: white;
}

.harmony-type-btn {
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.harmony-type-btn:hover {
    border-color: #748ffc;
}
.harmony-type-btn.active {
    background: #4c6ef5;
    color: white;
    border-color: #4c6ef5;
}

.color-export-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.color-export-tabs button {
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 12px;
    background: white;
    cursor: pointer;
}
.color-export-tabs button.active {
    background: #4c6ef5;
    color: white;
    border-color: #4c6ef5;
}
