/* --- public/style-admin-dynamic.css --- */

/* Category Tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid #4f545c;
  padding-bottom: 10px;
}

.category-tab-button {
  background-color: #202225;
  color: #8e9297;
  border: 1px solid #4f545c;
  border-radius: 3px;
  padding: 8px 12px;
  cursor: pointer;
  transition:
    background-color 0.2s,
    color 0.2s;
  font-size: 14px;
}

.category-tab-button:hover {
  background-color: #2f3136;
  color: #dcddde;
}

.category-tab-button.active {
  background-color: #36393f;
  color: #ffffff;
  border-color: #7289da;
}

/* Category Content */
.category-content {
  display: none;
}

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

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px; /* Add spacing between form groups */
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
  color: #8e9297;
}

.form-group input,
.form-group select {
  padding: 8px;
  border-radius: 3px;
  border: 1px solid #4f545c;
  background-color: #202225;
  color: #ffffff;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #7289da;
  box-shadow: 0 0 0 2px rgba(114, 137, 218, 0.2);
}

/* Error message */
.error {
  color: #f04747;
  font-size: 14px;
  margin-top: 10px;
}
