/* Config Center Content Area */
#config-center {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #4a5d57;
  box-shadow: inset 0 0 20px #1f2e2bcc;
}

/* Input Styling in Config */
#config-center input[type="text"] {
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  border-radius: 8px;
  border: 2px solid #bfa25f;
  background-color: #2f4039;
  color: #ffeab7;
  box-shadow: 0 0 8px #c0a86255;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
}
#config-center input[type="text"]:focus {
  outline: none;
  border-color: #f9e58c;
  box-shadow: 0 0 14px #f9e58ccc;
  background-color: #3f534c;
  color: #ffffff;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  #config {
    flex-direction: column;
  }

  .resizable-wrapper {
    flex-direction: column;
  }

  .resizer {
    height: 6px;
    width: 100%;
    cursor: ns-resize;
  }

  .config-sidebar {
    max-width: 100%;
    min-width: 100%;
    border-right: none;
    border-bottom: 2px solid #747474;
  }

  #config-center {
    padding: 1rem;
  }
}

#config-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#config-tabs .tab-button {
  background-color: #4a5d57;
  color: #f4e1b1;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

#config-tabs .tab-button:hover {
  background-color: #5b6d66;
}

#config-tabs .tab-button.active {
  background-color: #a97234;
  color: #1b1b1b;
  border-color: #f4e1b1;
  box-shadow: 0 0 6px #a97234cc;
}

/* Hide inactive content */
.config-content {
  display: none;
}

.config-content.active {
  display: block;
}
