/* modal.css */

/* ———————— Temel Modal Dialog Ayarları ———————— */
#aracModal .modal-xl {
  max-width: 1000px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #aracModal .modal-xl {
    max-width: 900px;
  }
}
@media (max-width: 991.98px) {
  #aracModal .modal-xl {
    max-width: 90vw;
  }
}
#aracModal .modal-dialog {
  margin: 1rem auto;
}
#aracModal .modal-content {
  width: 100%;
  max-width: none;
  padding: 1rem;
}

/* ———————— Liste ögeleri (label/value hizalama) ———————— */
#aracModal .list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
}
#aracModal .list-group-item strong {
  font-weight: 600;
}

/* ———————— Kapatma butonu ———————— */
.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: red;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  z-index: 1056;
}
.close-button:hover {
  background: darkred;
}

/* ———————— Carousel İçin ———————— */
#aracCarousel .carousel-inner {
  overflow: hidden;
}

.modal-backdrop {
  z-index: 1050 !important;
}

.modal {
  z-index: 1060 !important;
}
