/* Online Color Picker Styles */

/* Preview box styling */
#colorPicker {
    width: 250px !important;
    height: 250px;
    border-radius: 8px;
    border: 2px solid #ddd;
    margin-top: 33px;
}

/* Favorite color swatches */
.favorite-swatch {
    width: 60px;
    height: 60px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: transform 0.2s;
}

.favorite-swatch:hover {
    transform: scale(1.1);
}

#manualHex {
    text-transform: uppercase;
}