
 
/* KALENDAR STIL */
#calendar {
  max-width: 900px;
  margin: 40px auto;
  background: #202020;
  padding-top: 20px;
  border-radius: 12px;
}

.fc-daygrid-day-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  font-weight: bold;
  color: white;
  width: 100%;
  height: 100%;
}

.selected-date .fc-daygrid-day-number {
  background: white;
  color: black !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto;
}

/* SLOTOVI ISPOD KALENDARA */
.fc-slot-row td {
  padding: 20px 40px;
  background: white;
}

.slot-container h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
}

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

.slot-time {
  font-size: 16px;
  color: #555;
}

.slot-sub {
  font-size: 11px;
  color: #999;
}

.slot-btn {
  background: orange;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.slot-btn:hover {
  background: #ff9900;
}

.slot-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* MODAL */
#bookingModal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-contentv {
  background: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  min-width: 300px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px; right: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color:#fff;
}

.form-field {
  margin-bottom: 12px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
  width: 100%;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.form-submit {
  background: #d9534f;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.rezgore{
    box-sizing: border-box;
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    width: 100%;
    color: #fff;
    border-radius: 4px 4px 0 0;
    padding: 15px 30px 15px 15px;
    background: #ffa300;
}

.popup-info {
  background: #fff3cd;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  color: #333;
  border: 1px solid #ffeeba;
}
#selected-room {
  font-size: 15px;
  color: #d9534f;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
.fc-daygrid-day.fc-day-disabled .fc-day-number {
  font-size: 15px;
}
.fc-daygrid-day .fc-day-number {
    font-size: 15px;
    }
.slot-time {
  font-size: 14px;
}

.slot-sub {
  font-size: 9px;
}


}
