/* Custom retro LCD styles */
.lcd-glow {
    box-shadow: 
        inset 0 0 10px rgba(255, 107, 0, 0.3),
        0 0 20px rgba(255, 107, 0, 0.1);
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Custom scrollbar for recordings list */
.overflow-y-auto::-webkit-scrollbar {
    width: 6px;
}

.overflow-y-auto::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.overflow-y-auto::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 3px;
}

.overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: #ffb366;
}

/* Button press effects */
button:active {
    transform: translateY(1px);
}

/* Range slider styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-track {
    background: #2c2c2c;
    height: 6px;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #ff6b00;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #ffb366;
}

input[type="range"]::-moz-range-track {
    background: #2c2c2c;
    height: 6px;
    border-radius: 3px;
}

input[type="range"]::-moz-range-thumb {
    background: #ff6b00;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #ffb366;
    cursor: pointer;
}

/* Retro device texture */
.bg-gradient-to-b {
    background-image: 
        linear-gradient(to bottom, var(--tw-gradient-stops)),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
}