.content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.section-title {
  font-size: 2rem;
  color: #fff;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background: #2c2c2c;
  border: 1px solid #444;
  color: #fff;
  border-radius: 6px;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

.tab-btn {
  background: #191a24;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tab-btn:hover {
  border-color: rgb(0, 153, 255);
  background: #202233;
  color: #00ccff;
}

.tab-btn.mini {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}
