html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



.seat-radio {
    display: none;
}

.seat-label {
    border-radius: 0.75rem;
    padding: 12px;
    text-align: center;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
    /*display: block;*/
    margin: 5px;
    /*min-height: 72px;*/

    display: flex;
    flex-direction: column;
    align-items: center; /* أفقيًا */
    justify-content: center; /* عموديًا */
    text-align: center;
    height: 100%; /* تأكد أن له ارتفاع */
}

label.seat-label {
    cursor: pointer;
}

.seat-radio:checked + .seat-label {
    background-color: #ffa200 !important;
}

.seat-label.disabled {
    background-color: #dc3545 !important;
    opacity: 0.8;
}

label.seat-label.disabled {
    cursor: not-allowed;
}

.bus-row {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.bus-seat {
    max-width: 20%;
    flex: 1 1 0;
    margin: 0 5px;
}

.aisle {
    width: 40px;
}
.bus-seat {
    margin: 5px;
}
/*@media (max-width: 768px) {
    .bus-seat {
        max-width: 45%;
        margin: 5px;
    }
}*/

.bus-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bus-container {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}