/* Wood Color Tool Styles */
.color-sample {
    width: 33.33%;
    height: 40px;
    display: inline-block;
}

.cursor-pointer {
    cursor: pointer;
}

/* Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(139, 69, 19, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B4513'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Preset Color Button Styling */
.preset-color {
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.preset-color:hover {
    transform: scale(1.1);
}

/* Copy Button Styling */
.copy-icon {
    cursor: pointer;
    transition: color 0.2s;
}

.copy-icon:hover {
    color: #8B4513 !important;
}

/* Palette Color Styling */
.palette-color {
    transition: transform 0.2s;
}

.palette-color:hover {
    transform: translateY(-5px);
}

/* Form Range Styling */
.form-range::-webkit-slider-thumb {
    background: #8B4513;
}

.form-range::-moz-range-thumb {
    background: #8B4513;
}

.form-range::-ms-thumb {
    background: #8B4513;
}

/* Related Colors Links */
.col a {
    transition: transform 0.2s, opacity 0.2s;
}

.col a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Design Tips Icons */
.text-primary {
    color: #8B4513 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .color-sample {
        height: 30px;
    }
}