/* Main CSS for InnoTone ML Platform */

/* Base styles - most styling is handled by Tailwind CSS */
html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Custom focus styles */
.focus-ring:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

#project-details-container {
    margin-top: 0;
}

/* Update styles for training and deployment sections to match project section */

.training-section,
.deployment-section {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1F2937;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.training-section:hover,
.deployment-section:hover {
    background-color: #F9FAFB;
    color: #111827;
}