/* Mint Green Color Tool Styles */

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Cursor Styles */
.cursor-pointer {
    cursor: pointer;
}

/* Color Sample Styles */
.color-sample {
    display: inline-block;
    transition: transform 0.2s ease;
}

.color-sample:hover {
    transform: scale(1.05);
}

/* Palette Color Styles */
.palette-color {
    cursor: pointer;
    transition: all 0.2s ease;
}

.palette-color:hover {
    opacity: 0.9;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Preset Color Styles */
.preset-color {
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 1px solid #e0e0e0;
}

.preset-color:hover {
    transform: scale(1.1);
}

/* Copy Icon Styles */
.copy-icon {
    cursor: pointer;
    transition: color 0.2s ease;
}

.copy-icon:hover {
    color: #0d6efd !important;
}

/* Current Color Display */
#currentColor {
    transition: background-color 0.3s ease;
    border: 1px solid #e0e0e0;
}

/* Slider Styles */
.form-range::-webkit-slider-thumb {
    background: #3EB489;
}

.form-range::-moz-range-thumb {
    background: #3EB489;
}

.form-range::-ms-thumb {
    background: #3EB489;
}

/* Toast Notification Styling */
.toast {
    opacity: 0.9;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Explore Colors Links */
.card a.d-block {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card a.d-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Links */
footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: #3EB489 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .palette-color {
        height: 80px !important;
    }
    
    h1.display-4 {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 1.25rem !important;
    }
}

@media (max-width: 576px) {
    .palette-color {
        height: 60px !important;
    }
    
    h1.display-4 {
        font-size: 2rem;
    }
}