/* Vermilion Color Page Styles */

/* General Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.cursor-pointer {
    cursor: pointer;
}

/* Color Sample Styles */
.color-sample {
    width: 33.33%;
    height: 40px;
}

/* Palette Color Styles */
.palette-color {
    transition: all 0.2s ease;
    cursor: pointer;
}

.palette-color:hover {
    transform: translateY(-5px);
}

/* Copy Button Styles */
.copy-icon {
    transition: all 0.2s ease;
}

.copy-icon:hover {
    color: #E34234 !important;
}

/* Preset Color Button Styles */
.preset-color {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.preset-color:hover {
    transform: scale(1.1);
}

.preset-color.active {
    border: 2px solid #E34234;
}

/* Custom Range Slider Styles */
.form-range::-webkit-slider-thumb {
    background: #E34234;
}

.form-range::-moz-range-thumb {
    background: #E34234;
}

.form-range::-ms-thumb {
    background: #E34234;
}

/* Toast Animation */
.toast {
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .color-sample {
        height: 30px;
    }
}

/* Custom Form Control Styles */
.form-select:focus, 
.form-control:focus {
    border-color: #E34234;
    box-shadow: 0 0 0 0.25rem rgba(227, 66, 52, 0.25);
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Related Colors Links */
.row-cols-2 a {
    transition: all 0.3s ease;
}

.row-cols-2 a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}