/* Simple tab system for info.php */
#body {
  padding-top: 120px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.tab-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.tab-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.12);
  overflow: hidden;
}

.tab-wrapper input[type="radio"] {
  display: none;
}

.tab-label {
  display: inline-block;
  padding: 20px 32px;
  font-weight: 600;
  font-size: 16px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  background: #f8f9fa;
}

.tab-label:hover {
  color: #8B5CF6;
  background: #f0f2f5;
}

input[type="radio"]:checked + .tab-label {
  color: #8B5CF6;
  background: #fff;
  border-bottom: 3px solid #8B5CF6;
}

.tab-item {
  display: none;
  padding: 48px;
  background: #fff;
  line-height: 1.8;
  color: #475569;
  font-size: 15px;
}

input[type="radio"]:checked + label + .tab-item {
  display: block;
}


.tab-item p {
  margin-bottom: 20px;
}

.tab-item b {
  color: #8B5CF6;
  font-weight: 600;
}

@media (max-width: 768px) {
  .tab-label {
    display: block;
    width: 100%;
    padding: 16px 24px;
  }
  
  .tab-item {
    padding: 32px 24px;
  }
}
