.color-picker-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.color-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.color-input label {
    color: white;
    font-size: 0.9em;
}

.color-input input[type="color"] {
    width: 80px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.background-preview {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.background-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
} 