/* Terracotta Color Tool Styles */

/* 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;
}

/* Preset Color Button Styles */
.preset-color {
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.preset-color:hover {
    transform: scale(1.1);
}

/* Copy Button Styles */
.copy-icon {
    cursor: pointer;
    transition: all 0.2s;
}

.copy-icon:hover {
    color: #E2725B !important;
}

/* Related Colors Links */
.col a {
    transition: all 0.3s ease;
}

.col a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #E2725B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B35A44;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .color-sample {
        height: 30px;
    }
}