/* URL Toolkit Custom CSS */

.apple-glass {
    background: rgba(18, 18, 20, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.apple-card {
    background: rgba(29, 29, 31, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.apple-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

.text-glow {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
}

/* Length meter */
.length-meter-track {
    height: 6px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.length-meter-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.25s ease, background-color 0.25s ease;
}

/* Param editor rows */
.param-row input {
    background: transparent;
}

.param-row:hover {
    background: rgba(255, 255, 255, 0.015);
}
