/* Sandwich Console — Warm orange/amber branding on shared console theme */

/* Override accent color for sandwich branding */
:root {
    --console-accent: #ea580c;
    --console-accent-hover: #c2410c;
    --console-accent-light: rgba(234, 88, 12, 0.1);
}

/* Body defaults */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Console surface colors (same as barber console) */
.bg-console-bg { background-color: #f8fafc; }
.bg-console-bg-dark { background-color: #0f172a; }
.bg-console-surface { background-color: #ffffff; }
.bg-console-surface-dark { background-color: #1e293b; }
.border-console-border { border-color: #e2e8f0; }
.border-console-border-dark { border-color: #334155; }

/* Quick action button uses sandwich accent */
.quick-action-btn.primary {
    background-color: var(--console-accent);
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: background-color 0.15s;
}

.quick-action-btn.primary:hover {
    background-color: var(--console-accent-hover);
}
