/* Peach Color Tool Styles */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Custom Range Slider Styling */
.form-range::-webkit-slider-thumb {
    background: #FFCBA4;
}

.form-range::-moz-range-thumb {
    background: #FFCBA4;
}

.form-range::-ms-thumb {
    background: #FFCBA4;
}

/* Custom Range Track */
.form-range::-webkit-slider-runnable-track {
    background: linear-gradient(to right, #ffe5d9, #ffcba4, #ffb59c);
}

.form-range::-moz-range-track {
    background: linear-gradient(to right, #ffe5d9, #ffcba4, #ffb59c);
}

.form-range::-ms-track {
    background: linear-gradient(to right, #ffe5d9, #ffcba4, #ffb59c);
}

/* Copy Button Styles */
.copy-icon {
    transition: color 0.2s ease;
}

.copy-icon:hover {
    color: #FFCBA4 !important;
}

/* Form Focus States */
.form-control:focus,
.form-select:focus {
    border-color: #FFCBA4;
    box-shadow: 0 0 0 0.25rem rgba(255, 203, 164, 0.25);
}

/* Palette Color Hover */
.palette-color {
    transition: all 0.2s ease;
    cursor: pointer;
}

.palette-color:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* 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 0.25rem 0.5rem rgba(0, 0, 0, 0.1) !important;
}

/* Cursor Pointer */
.cursor-pointer {
    cursor: pointer;
}

/* Color Sample in Table */
.color-sample {
    transition: transform 0.2s ease;
}

tr:hover .color-sample {
    transform: scale(1.1);
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}

/* Other Colors Links */
.row-cols-2 a {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.row-cols-2 a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Toast Styling */
.toast {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FFCBA4;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFB59C;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .fs-5 {
        font-size: 1.1rem !important;
    }
}

/* Footer Link Hover */
footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: #FFCBA4 !important;
}

/* Table Hover Effect */
.table-hover tbody tr:hover {
    background-color: rgba(255, 203, 164, 0.1);
}

/* Badge Styling */
.badge {
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* Navbar Brand Hover */
.navbar-brand:hover {
    color: #FFCBA4 !important;
}

/* Nav Link Hover */
.nav-link:hover {
    color: #FFCBA4 !important;
}