@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-main: #0f172a;
  --bg-sidebar: #1e293b;
  --bg-card: #1e293b;
  --bg-input: #334155;
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --text-inverse: #0f172a;
  --primary: #38bdf8;
  --primary-hover: #0ea5e9;
  --accent: #818cf8;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;
  --border: #ffffff1a;
  --shadow: 0 4px 6px -1px #0000004d, 0 2px 4px -1px #0000001a;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -.025em;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.topbar {
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar h1 {
  font-size: 1.25rem;
  color: var(--primary);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.topbar a:hover {
  color: var(--text-primary);
}

.topbar a.active {
  color: var(--primary);
}

.topbarLogout {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .4rem .75rem;
}

.topbarLogout:hover:not(:disabled) {
  color: var(--text-primary);
  background: #ffffff0d;
}

.topbarLogout:disabled {
  cursor: wait;
  opacity: .7;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

input, select, textarea {
  width: 100%;
  padding: .625rem .875rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #38bdf833;
}

input::placeholder {
  color: #64748b;
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .625rem 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

button.primary {
  background-color: var(--primary);
  color: var(--text-inverse);
}

button.primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

button.secondary {
  background-color: #0000;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

button.secondary:hover {
  background-color: #ffffff0d;
}

button.danger {
  background-color: var(--error);
  color: #fff;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
}

th {
  background: #ffffff05;
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
}

.badge {
  display: inline-flex;
  padding: .25rem .625rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge.in_negozio {
  background: #22c55e26;
  color: #4ade80;
}

.badge.prenotabile {
  background: #f59e0b26;
  color: #fbbf24;
}

.badge.non_disponibile {
  background: #ef444426;
  color: #f87171;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  z-index: 1000;
  animation: .3s ease-out slideIn;
  box-shadow: 0 20px 25px -5px #00000080;
}

.toast.success {
  background: var(--success);
  color: #fff;
}

.toast.error {
  background: var(--error);
  color: #fff;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/* [project]/src/frontend/components/navigation/CassaStatusIndicator.module.css [app-client] (css) */
.CassaStatusIndicator-module__QJwE3W__container {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.CassaStatusIndicator-module__QJwE3W__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease-in-out;
  border: 1px solid #0000;
  user-select: none;
}

.CassaStatusIndicator-module__QJwE3W__badgeOnline {
  background: #22c55e26;
  color: #22c55e;
  border-color: #22c55e4d;
}

.CassaStatusIndicator-module__QJwE3W__badgeOnline:hover {
  background: #22c55e40;
}

.CassaStatusIndicator-module__QJwE3W__badgeOffline {
  background: #ef444426;
  color: #ef4444;
  border-color: #ef44444d;
}

.CassaStatusIndicator-module__QJwE3W__badgeOffline:hover {
  background: #ef444440;
  box-shadow: 0 0 10px #ef44444d;
}

.CassaStatusIndicator-module__QJwE3W__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.CassaStatusIndicator-module__QJwE3W__dotOnline {
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.CassaStatusIndicator-module__QJwE3W__dotOffline {
  background-color: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: 2s infinite CassaStatusIndicator-module__QJwE3W__pulse;
}

@keyframes CassaStatusIndicator-module__QJwE3W__pulse {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 #ef4444b3;
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px #ef444400;
  }

  100% {
    transform: scale(.95);
    box-shadow: 0 0 #ef444400;
  }
}

.CassaStatusIndicator-module__QJwE3W__modalOverlay {
  position: fixed;
  inset: 0;
  background: #0f172abf;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.CassaStatusIndicator-module__QJwE3W__modalContent {
  background: #1e293b;
  border: 1px solid #ffffff26;
  border-radius: 12px;
  width: 90%;
  max-width: 440px;
  padding: 24px;
  box-shadow: 0 20px 25px -5px #00000080;
  color: #f8fafc;
}

.CassaStatusIndicator-module__QJwE3W__modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.CassaStatusIndicator-module__QJwE3W__modalTitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f8fafc;
}

.CassaStatusIndicator-module__QJwE3W__closeBtn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

.CassaStatusIndicator-module__QJwE3W__closeBtn:hover {
  color: #f8fafc;
}

.CassaStatusIndicator-module__QJwE3W__fieldGroup {
  margin-bottom: 16px;
}

.CassaStatusIndicator-module__QJwE3W__label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 6px;
}

.CassaStatusIndicator-module__QJwE3W__input {
  width: 100%;
  padding: 10px 14px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  color: #f8fafc;
  font-size: .95rem;
  font-family: monospace;
  outline: none;
  transition: border-color .2s;
}

.CassaStatusIndicator-module__QJwE3W__input:focus {
  border-color: #38bdf8;
}

.CassaStatusIndicator-module__QJwE3W__statusDetails {
  background: #0f172a99;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  font-size: .85rem;
  color: #cbd5e1;
}

.CassaStatusIndicator-module__QJwE3W__statusRow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.CassaStatusIndicator-module__QJwE3W__statusRow:last-child {
  margin-bottom: 0;
}

.CassaStatusIndicator-module__QJwE3W__statusError {
  color: #f87171;
  font-size: .8rem;
  margin-top: 6px;
  word-break: break-all;
}

.CassaStatusIndicator-module__QJwE3W__modalActions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.CassaStatusIndicator-module__QJwE3W__btnCancel {
  padding: 8px 16px;
  background: #334155;
  color: #f8fafc;
  border: none;
  border-radius: 6px;
  font-size: .9rem;
  cursor: pointer;
}

.CassaStatusIndicator-module__QJwE3W__btnSave {
  padding: 8px 16px;
  background: #0284c7;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.CassaStatusIndicator-module__QJwE3W__btnSave:disabled {
  opacity: .6;
  cursor: not-allowed;
}


/*# sourceMappingURL=src_0c7e29c5._.css.map*/
