/* Main styles */ body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; } /* Code block styling */ pre { border-radius: 0.375rem; padding: 1rem; overflow-x: auto; font-family: 'Courier New', Courier, monospace; font-size: 0.875rem; line-height: 1.5; } /* Responsive adjustments */ @media (max-width: 768px) { .grid-cols-2 { grid-template-columns: 1fr; } } /* Animation for alarm state */ @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } } .alarm-active { animation: pulse 1s infinite; }