body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.hidden-panel {
  display: none;
}
.recording-dot {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
/* --- CUSTOM DROPDOWN FIXES --- */
.custom-dropdown-container {
    position: relative;
    display: inline-block;
}
.custom-dropdown-menu {
    position: absolute;
    z-index: 20; /* HIGH Z-INDEX TO PREVENT OVERLAP */
    min-width: 100%; 
    top: 100%; 
    margin-top: 0.25rem;
    list-style: none; /* Ensure no list bullets */
    padding: 0;
}
/* Styles for disabled recorder */
.recorder-disabled {
    opacity: 0.5;
    pointer-events: none;
}
}
