/* ========== BUTTONS ========== */
.cta-button {
  margin-top: auto;
  background-color: #22c55e;
  color: #0a0f1a;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.cta-button:hover {
  background-color: #16a34a;
}

.cta-button.subtle {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
  font-weight: 600;
}

.cta-mini {
  background-color: #22c55e;
  color: #0a0f1a;
  padding: 0.25rem 0.75rem;
  border: none;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #22c55e;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background-color: #16a34a;
}

/* ========== BADGES ========== */
.profit-badge {
  background-color: #22c55e;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: bold;
  color: #0a0f1a;
}

.profit-badge.high {
  background: #eab308;
}

.profit-badge.elite {
  background: #ef4444;
}

.profit-badge.large {
  display: inline-block;
  font-size: 1.05rem;
  padding: 0.35rem 0.9rem;
  background-color: #22c55e;
  color: #0a0f1a;
  border-radius: 9999px;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* ========== TOGGLE SWITCH ========== */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4b5563;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #10b981;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* ========== COLLAPSIBLE ELEMENTS ========== */
.collapsible-label {
  font-weight: 600;
  color: #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.25rem;
}

.collapse-arrow {
  display: inline-block;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.collapsible-label.collapsed .collapse-arrow {
  transform: rotate(90deg);
}

/* ========== UTILITY CLASSES ========== */
.hidden {
  display: none !important;
}
