/* Blue Colors Tool Styles */
.color-sample {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Slider styling */
input[type="range"] {
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1E90FF;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1E90FF;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Toast animation */
.toast-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Palette color hover effect */
.palette-color {
    transition: transform 0.2s;
}

.palette-color:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* Copy button hover effect */
.copy-icon {
    cursor: pointer;
    transition: transform 0.2s;
}

.copy-icon:hover {
    transform: scale(1.1);
}

/* Preset color buttons */
.preset-color {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.preset-color:hover {
    transform: scale(1.1);
}

.preset-color.active {
    border: 2px solid #4a5568;
}