
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

.gradio-container {
    margin: 2rem auto;
    padding: 0 1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card {
    transition: all 0.3s ease;
}
/* Connection status styles */
#connection-status, #audio-connection-status {
  background: rgba(0,0,0,0.8);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

/* Animation for Gradio loading */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#gradio-iframe {
    animation: fadeIn 0.5s ease-in-out;
}

/* Audio Forge styles */
.audio-forge-container {
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
}

.audio-forge-container h2 {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.audio-forge-container .description {
    font-style: italic;
    font-weight: 300;
}
