/**
 * Macro Calculator Styles
 */

/* Results section transition */
#macro-results {
    transition: opacity 0.5s ease;
}

/* Highlight animation for results */
@keyframes highlight-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.2);
    }
    
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.highlight-animation {
    animation: highlight-pulse 1.5s ease;
}

/* Progress bar transitions */
.progress-bar {
    transition: width 1s ease-in-out;
}

/* Slider styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 8px;
    background: #e5e7eb;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
