/* General Styles */
.cursor-pointer {
    cursor: pointer;
}

/* Color Sample Styles */
.color-sample {
    width: 33.33%;
    height: 40px;
    border-radius: 4px;
    margin-right: 4px;
}

.color-sample:last-child {
    margin-right: 0;
}

/* Palette Color Styles */
.palette-color {
    transition: all 0.2s ease;
}

.palette-color:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Custom Range Slider Styling */
.form-range::-webkit-slider-thumb {
    background: #A67B5B;
}

.form-range::-moz-range-thumb {
    background: #A67B5B;
}

.form-range::-ms-thumb {
    background: #A67B5B;
}

/* Preset Color Button Styles */
.preset-color {
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.preset-color:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.preset-color.active {
    border: 2px solid #333;
}

/* Copy Button Styles */
.copy-icon {
    transition: all 0.2s ease;
}

.copy-icon:hover {
    color: #A67B5B !important;
}

/* Toast Animation */
.toast.showing {
    opacity: 0;
}

.toast.show {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

/* Earth Tones Theme Specific Styles */
#currentColor {
    border: 1px solid #e0e0e0 !important;
}

.form-range::-webkit-slider-runnable-track {
    background-color: #e0e0e0;
}

.form-range::-moz-range-track {
    background-color: #e0e0e0;
}

.form-range::-ms-track {
    background-color: #e0e0e0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .color-sample {
        height: 30px;
    }
    
    .palette-color {
        height: 100px !important;
    }
}

/* Earth Tones Specific Styles */
.badge.bg-light {
    border: 1px solid #e0e0e0;
}

.table-hover tbody tr:hover {
    background-color: rgba(166, 123, 91, 0.05);
}

.form-select:focus {
    border-color: #A67B5B;
    box-shadow: 0 0 0 0.25rem rgba(166, 123, 91, 0.25);
}

/* Earth Tones Button Styles */
.btn-earth {
    background-color: #A67B5B;
    color: white;
}

.btn-earth:hover {
    background-color: #8a6548;
    color: white;
}

.btn-outline-earth {
    border-color: #A67B5B;
    color: #A67B5B;
}

.btn-outline-earth:hover {
    background-color: #A67B5B;
    color: white;
}

/* Earth Tones Text Colors */
.text-earth {
    color: #A67B5B !important;
}

.bg-earth {
    background-color: #A67B5B !important;
}

/* Earth Tones Border Colors */
.border-earth {
    border-color: #A67B5B !important;
}

/* Earth Tones Link Colors */
a.earth-link {
    color: #A67B5B;
    text-decoration: none;
}

a.earth-link:hover {
    color: #8a6548;
    text-decoration: underline;
}

/* Earth Tones Focus Styles */
.earth-focus:focus {
    box-shadow: 0 0 0 0.25rem rgba(166, 123, 91, 0.25);
    border-color: #A67B5B;
}