.bilet-special {
    background-color: #e63946 !important; /* roșu intens */
    color: #fff !important;
    border: none !important;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}
.bilet-special:hover {
    background-color: #a4161a !important;
}
.lista-reprezentatii ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-reprezentatii li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
  border-bottom: 1px solid #eee;
}

.lista-reprezentatii strong {
  flex: 1;
  
  font-weight: 500;
  color: #333;
}
.bilet-special {
  background: #b33c2f;
  color: #fff;
  padding: 0px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

#btn-continua {
  background-color: #007BFF;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

#lista-locuri li {
  display: inline;
}
#lista-locuri li::after {
  content: " | ";
}
#lista-locuri li:last-child::after {
  content: "";
}

#btn-continua:hover {
  background-color: #0056b3;
}

        .seat {
            cursor: pointer;
            transition: stroke 0.2s ease;
        }
        .seat:hover {
            stroke: black;
            stroke-width: 2px;
        }
        .seat.selectat {
            stroke: #000;
            stroke-width: 3px;
            fill: #FFD700 !important;
        }
        .tooltip-seat {
  position: absolute;
  background: #ccc;
  border: 1px solid #ccc;
  padding: 4px 6px;
  font-size: 12px;
  z-index: 9999;
  display: none;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  white-space: nowrap;
}
        .legend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; /* toate pe un rând */
  gap: 12px; /* spațiu între elemente */
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-color {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px solid #000;
}
        .responsive-svg-container {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  position: relative;
}

.responsive-svg-container svg {
  width: 100%;
  height: auto;
  display: block;
}
  #sala-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: auto;
  }

  #sala-wrapper svg {
    width: 100%;
    height: auto;
    max-height: 90vh;
  }
  .seat.ocupat {
    fill: #ccc !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.formular-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.formular-bilete {
    width: 75%;
    max-width: 800px;
}

.formular-bilete table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.formular-bilete th,
.formular-bilete td {
    padding: 8px 12px;
    border: 1px solid #ccc;
}
.input-cantitate {
    width: 60px;
    padding: 4px 6px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    transition: border-color 0.2s ease;
}

.input-cantitate:focus {
    border-color: #007cba;
    outline: none;
}
#total-general {
    font-weight: bold;
    color: #333;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}
input[type="number"] {
  -webkit-appearance: number-input;
  -moz-appearance: number-input;
  appearance: number-input;
}


