/* CityPed Application Styles
 * Import order: theme.css → components.css → app.css (page-specific overrides)
 */

@import url('theme.css');
@import url('components.css');
@import url('machine-view.css');

/* Page-specific styles and overrides can go below */

/* Custom gradient utilities (in addition to theme) */
.gradient-primary {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.gradient-warning {
    background: linear-gradient(135deg, #f57c00 0%, #ef6c00 100%);
}

.gradient-error {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
}