#kk-calendar-wrapper {
  margin: 30px auto;
  max-width: 900px;
}

#kk-month-header {
  text-align: center;
  margin-bottom: 20px;
}

#kk-month-name {
  display: block;
  font-size: 2.2em;
  font-weight: bold;
  color: #8b0000;
  margin-bottom: 15px;
}

.kk-selectors {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.kk-selectors label {
  font-weight: bold;
  color: black;
  font-size: 1.2em; /* veći font */
}

#kk-month-select, #kk-year-select {
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid #8b0000;
  background: #fff;
  color: #8b0000;
  font-weight: bold;
  font-size: 1.3em; /* malo veći font */
  cursor: pointer;
  appearance: auto; /* strelica dropdown-a */
  width: 140px; /* kraći dropdown */
}

#kk-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  width: 100%;
}

.kk-day {
  padding: 18px;
  border-radius: 10px;
  background: #8b0000 !important; /* tamna crvena */
  text-align: center;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.kk-day.highlight {
  background: #f5f5f5 !important; /* svetlija siva */
  border: 2px solid #8b0000;
  color: #8b0000;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

.kk-day.highlight::after {
  content: "📍";
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 16px;
}

.kk-day:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.kk-popup {
  display: none;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: popupIn 0.4s ease;
  max-width: 450px;
}

#kk-close {
  float: right;
  cursor: pointer;
  font-size: 22px;
  color: #8b0000;
}

#kk-popup-content img {
  border-radius: 10px;
  margin-bottom: 15px;
}

#kk-popup-content h3 a {
  color: #8b0000;
  text-decoration: none;
  font-weight: bold;
}

#kk-popup-content h3 a:hover {
  text-decoration: underline;
}

@keyframes popupIn {
  from { transform: translate(-50%, -30%) scale(0.85); opacity: 0; }
  to { transform: translate(-50%, -30%) scale(1); opacity: 1; }
}

/* Tablet (max širina 1024px) */
@media (max-width: 1024px) {
  #kk-calendar-wrapper {
    max-width: 95%;
    margin: 20px auto;
  }

  #kk-month-name {
    font-size: 1.8em;
  }

  .kk-selectors {
    flex-direction: row;
    gap: 20px;
  }

  #kk-month-select, #kk-year-select {
    width: 120px; /* kraći dropdown */
    font-size: 1em;
  }

  .kk-day {
    padding: 14px;
    font-size: 0.9em;
  }
}

/* Telefon (max širina 600px) */
@media (max-width: 600px) {
  #kk-calendar-wrapper {
    max-width: 100%;
    margin: 10px auto;
  }

  #kk-month-name {
    font-size: 1.5em;
    margin-bottom: 10px;
  }

  .kk-selectors {
    flex-direction: column; /* mesec i godina jedan ispod drugog */
    gap: 10px;
  }

  .kk-selectors label {
    font-size: 1em;
  }

  #kk-month-select, #kk-year-select {
    width: 100%; /* zauzima celu širinu ekrana */
    font-size: 1em;
    padding: 8px;
  }

  #kk-calendar {
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
  }

  .kk-day {
    padding: 10px;
    font-size: 0.8em;
  }

  .kk-day.highlight::after {
    font-size: 14px;
    top: 4px;
    right: 6px;
  }

  .kk-popup {
    max-width: 90%;
    padding: 15px;
  }
}