/* Deployed site fixes for CaaS Audio Analysis */

/* Fix for file upload button text color */
.file-label {
  color: #333333 !important; /* Force dark grey text color */
}

/* Ensure loading indicator is properly displayed */
#audio-analysis-loading {
  display: none; /* Hidden by default */
}

/* Ensure results container is properly styled */
#audio-analysis-results {
  margin-top: 20px;
}

/* Ensure content area is properly styled */
#audio-analysis-content {
  margin-top: 10px;
  display: none; /* Hidden by default */
}

/* Fix for analyze button text color */
#analyze-audio-btn {
  color: #ffffff !important; /* Force white text color */
}

/* Fix for analyze button when disabled */
#analyze-audio-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Error message styling */
.error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  border-radius: 4px;
  margin: 10px 0;
  border: 1px solid #f5c6cb;
  font-weight: 500;
}

#audio-analysis-error {
  display: none;
  margin-bottom: 15px;
}
