/* Olive Green Color Tool Styles */

/* General Styles */
.cursor-pointer {
    cursor: pointer;
}

/* Color Display Styles */
#currentColor {
    transition: background-color 0.3s ease;
}

/* Palette Color Styles */
.palette-color {
    cursor: pointer;
    transition: all 0.2s ease;
}

.palette-color:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Color Sample Styles */
.color-sample {
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Preset Color Button Styles */
.preset-color {
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preset-color:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Copy Button Styles */
.copy-icon {
    cursor: pointer;
    transition: color 0.2s ease;
}

.copy-icon:hover {
    color: #808000 !important;
}

/* Toast Notification Styles */
.toast {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast.show {
    opacity: 1;
}

/* Slider Customization */
.form-range::-webkit-slider-thumb {
    background: #808000;
}

.form-range::-moz-range-thumb {
    background: #808000;
}

.form-range::-ms-thumb {
    background: #808000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .palette-color {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .palette-color {
        height: 80px;
    }
}