@charset "UTF-8";
.dcm__reservation-info-form-wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.dcm__reservation-info-form-wrapper .spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0077ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .dcm__reservation-info-form-wrapper .spinner {
    width: 30px;
    height: 30px;
    border-width: 3px;
  }
}
@media (max-width: 768px) {
  .dcm__reservation-info-form-wrapper .spinner {
    width: 35px;
    height: 35px;
    border-width: 3px;
  }
}
.dcm__reservation-info-form-wrapper .spinner-inner {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 3px solid #ccc;
  border-top: 3px solid #0077ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  /* Mobil cihazlara özel boyut */
  /* Tablet cihazlara özel boyut */
}
@media (max-width: 576px) {
  .dcm__reservation-info-form-wrapper .spinner-inner {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
}
@media (max-width: 768px) {
  .dcm__reservation-info-form-wrapper .spinner-inner {
    width: 22px;
    height: 22px;
    border-width: 2px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dcm__form {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: "Arial", sans-serif;
}
.dcm__form h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}
.dcm__form label {
  display: block;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.dcm__form input,
.dcm__form select,
.dcm__form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fafafa;
  transition: all 0.3s ease;
}
.dcm__form input:focus,
.dcm__form select:focus,
.dcm__form textarea:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 6px rgba(0, 119, 255, 0.3);
  background-color: #fff;
}
.dcm__form button {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(90deg, #0077ff, #0056d1);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 119, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.dcm__form button:hover {
  background: linear-gradient(90deg, #0056d1, #0077ff);
  box-shadow: 0 6px 16px rgba(0, 119, 255, 0.5);
}
.dcm__form button:active {
  transform: scale(0.97);
}
.dcm__form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpolyline points='7 8 12 13 7 18' style='fill:none;stroke:%23999;stroke-width:2'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
@media (max-width: 768px) {
  .dcm__form {
    max-width: 90%;
    padding: 1.5rem;
  }
  .dcm__form h3 {
    font-size: 1.3rem;
  }
  .dcm__form button {
    font-size: 1rem;
  }
  .dcm__form input,
  .dcm__form select,
  .dcm__form textarea {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 576px) {
  .dcm__form {
    max-width: 95%;
    padding: 1.2rem;
  }
  .dcm__form h3 {
    font-size: 1.2rem;
  }
  .dcm__form button {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  .dcm__form input,
  .dcm__form select,
  .dcm__form textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}

.dcm__modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}
.dcm__modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcm__modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (max-width: 768px) {
  .dcm__modal-content {
    padding: 1.5rem;
    width: 90%;
  }
}
@media (max-width: 576px) {
  .dcm__modal-content {
    padding: 1rem;
    width: 95%;
  }
}

.dcm__modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}
.dcm__modal-close:hover {
  color: #d9534f;
}

.dcm__booking-results {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.dcm__booking-results .booking-item {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.dcm__booking-results .booking-item h3 {
  margin-bottom: 10px;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 5px;
}
.dcm__booking-results .booking-item p {
  margin: 5px 0;
  color: #666666;
  font-size: 16px;
}
.dcm__booking-results .booking-item p strong {
  color: #000;
}
.dcm__booking-results .booking-item a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: bold;
}
.dcm__booking-results .booking-item a:hover {
  text-decoration: underline;
}
.dcm__booking-results hr {
  border: none;
  border-top: 1px solid #dddddd;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .dcm__booking-results {
    padding: 15px;
  }
  .dcm__booking-results .booking-item {
    padding: 10px;
  }
  .dcm__booking-results .booking-item h3 {
    font-size: 16px;
  }
  .dcm__booking-results .booking-item p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .dcm__booking-results {
    padding: 10px;
  }
  .dcm__booking-results .booking-item {
    margin-bottom: 15px;
    padding: 8px;
  }
  .dcm__booking-results .booking-item h3 {
    font-size: 14px;
  }
  .dcm__booking-results .booking-item p {
    font-size: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
