/* Custom styles for Audio Scout */

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-georgia {
    font-family: 'Georgia', serif;
}

/* Glassmorphism effect for floating panels */
.glass {
    background: rgba(45, 55, 72, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom scrollbar for teleprompter */
.teleprompter-scroll::-webkit-scrollbar {
    width: 6px;
}

.teleprompter-scroll::-webkit-scrollbar-track {
    background: rgba(55, 65, 81, 0.5);
    border-radius: 3px;
}

.teleprompter-scroll::-webkit-scrollbar-thumb {
    background: #48BB78;
    border-radius: 3px;
}

.teleprompter-scroll::-webkit-scrollbar-thumb:hover {
    background: #38A169;
}

/* Waveform animation */
@keyframes waveform {
    0%, 100% { height: 4px; }
    50% { height: 32px; }
}

.waveform-bar {
    animation: waveform 0.5s ease-in-out infinite;
}

/* Recording button pulse effect */
@keyframes recordPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.record-button-active {
    animation: recordPulse 2s infinite;
}

/* VU meter bars */
.vu-bar {
    transition: height 0.1s ease-out;
    background: linear-gradient(to top, #10B981, #FBBF24, #EF4444);
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* Focus states for better accessibility */
input:focus,
textarea:focus,
button:focus {
    outline: none;
    ring: 2;
    ring-color: #48BB78;
}

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

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

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #48BB78;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    cursor: pointer;
}

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

input[type="range"]::-moz-range-thumb {
    background: #48BB78;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

/* Confidence indicator styling */
.confidence-high {
    background-color: rgba(16, 185, 129, 0.2);
}

.confidence-medium {
    background-color: rgba(251, 191, 36, 0.2);
}

.confidence-low {
    background-color: rgba(239, 68, 68, 0.2);
}

/* Professional studio theme colors */
:root {
    --studio-dark: #1A365D;
    --studio-charcoal: #2D3748;
    --studio-mint: #48BB78;
    --studio-orange: #ED8936;
}