/* Custom Range Styling */
.modern-range {
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    height: 6px;
    border-radius: 10px;
}

.modern-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--secondary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(var(--secondary-rgb, 16, 185, 129), 0.3);
    transition: all 0.2s;
}

.modern-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(var(--secondary-rgb, 16, 185, 129), 0.5);
}

.modern-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.2rem;
}

@keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animate-gradient-text {
    animation: gradient-text 5s ease infinite;
}

.dropdown-menu {
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-option.active {
    background: rgba(var(--secondary-rgb, 16, 185, 129), 0.1);
    color: var(--secondary);
}
