/* Osnovni stil za kladionice i slot */

.ks-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

.ks-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.ks-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* TABS */
.ks-tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  gap: 10px;
  margin-bottom: 20px;
}

.ks-tab-button {
  padding: 10px 20px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-weight: bold;
}

.ks-tab-button.active {
  background: #0073aa;
  color: #fff;
}

.ks-tab-content {
  display: none;
}

.ks-tab-content.active {
  display: block;
}

/* Ocenjivanje zvezdice */
.ks-rating-stars {
  display: flex;
  gap: 4px;
}

.ks-star {
  font-size: 20px;
  color: #ddd;
  transition: color 0.3s ease;
}

.ks-star.filled {
  color: #fbc02d;
}

/* Prednosti i mane */
.ks-pros-cons {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
}

.ks-pro {
  color: #28a745;
}

.ks-con {
  color: #dc3545;
}

/* FAQ accordion */
.ks-faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.ks-faq-question {
  font-weight: bold;
  cursor: pointer;
}

.ks-faq-answer {
  display: none;
  padding-top: 5px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .ks-tabs {
    flex-direction: column;
  }
}
