/* src/styles.scss */
body {
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  background:
    linear-gradient(
      135deg,
      #d1c7bc 0%,
      #f4f1ee 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  gap: 20px;
}
.nav-button {
  padding: 15px 30px;
  border: 2px solid #96714e;
  border-radius: 2px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.back-button {
  background: #96714e;
  color: white;
}
.next-button {
  background-color: #640a11;
  color: white;
}
.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.selection-summary {
  background: #d1c7bc;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  border-right: 4px solid #640a11;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  padding: 5px 0;
}
.total-price {
  font-size: 1.3em;
  font-weight: bold;
  color: black;
  border-top: 2px solid #ddd;
  padding-top: 15px;
  margin-top: 15px;
}
.stage {
  background: #96714e;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  font-size: 1.3em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .seating-area {
    grid-template-columns: 1fr;
  }
  .navigation {
    flex-direction: column;
  }
  .legend {
    gap: 15px;
  }
  .event-poster h1 {
    font-size: 2.5em;
  }
  .seat-row {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 5px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
