.effects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
      justify-content: center;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
    }
    .timer-box {
      background: rgba(0, 0, 0, 0.4);
      border: 2px solid #a7890e;
      border-radius: 10px;
      box-shadow: 0 0 12px #a7890e77;
      padding: 8px 14px;
      font-size: 14px;
      font-family: 'Cinzel', serif;
      color: #f1c40f;
      max-width: 320px;
    }
.timer {
  font-weight: bold;
  color: #00ffff;
  font-family: monospace;
  display: inline-block;
  min-width: 160px; /* lub więcej, zależnie od długości treści */
}

    .boss-title {
      font-weight: bold;
      color: #f1c40f;
      font-size: 15px;
    }
    .sidebar {
      width: 250px;
      background-color: rgba(0, 0, 0, 0.6);
      border: 2px solid #a7890e;
      border-radius: 10px;
      box-shadow: 0 0 12px #a7890e77;
      padding: 15px;
      color: #f1c40f;
      font-family: 'Cinzel', serif;
      margin-right: 20px;
    }
    .container {
      display: flex;
      justify-content: center;
    }
    .main-content {
      display: flex;
      justify-content: center;
      flex-grow: 1;
    }
.refresh-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: #f1c40f;
  background: linear-gradient(to right, #2a2a2a, #111);
  border: 2px solid #a7890e;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px #a7890e88;
  transition: all 0.3s ease;
}
.refresh-button:hover {
  background: #3a2d00;
  box-shadow: 0 0 14px #f1c40f;
  color: #fff;
}
.custom-checkbox {
  position: relative;
  margin-bottom: 8px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox label {
  cursor: pointer;
  color: #f1c40f;
  padding-left: 28px;
  position: relative;
  user-select: none;
  display: inline-block;
}

.custom-checkbox label .checkmark {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background-color: #111;
  border: 2px solid #a7890e;
  border-radius: 4px;
  box-shadow: 0 0 6px #a7890e77;
}

.custom-checkbox input:checked + label .checkmark {
  background-color: #a7890e;
  box-shadow: 0 0 8px #f1c40f;
}

.custom-checkbox label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked + label .checkmark:after {
  display: block;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}



.boss-group {
  margin-bottom: 40px;
  width: 100%;
}

.subcategory-header {
  color: #f1c40f;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  margin: 20px 10px 10px;
  text-shadow: 0 0 6px #000;
}
