.wcgt_goal_input_wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.wcgt_goal_input_wrapper input[type="number"] {
    width: 60%;
    padding: 4px;
    font-size: 14px;
}

.wcgt_goal_input_wrapper input[type="button"] {
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
}

/* CSS For Settings Menu Page */
.wcgt-admin-wrap {
  max-width: 800px;
  margin: 20px 30px;
  font-family: "Inter", sans-serif;
}

.wcgt-admin-wrap h1 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #1d2327;
}

.wcgt-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.wcgt-card h2 {
  font-size: 18px;
  color: #23282d;
  margin-bottom: 10px;
}

.wcgt-subtitle {
  font-size: 13px;
  color: #646970;
  margin-bottom: 20px;
}

.wcgt-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.wcgt-field label {
  flex: 1;
  font-weight: 500;
  color: #1d2327;
}

.wcgt-field input[type="number"],
.wcgt-field input[type="color"],
.wcgt-field select,
.wcgt-field textarea {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #ccd0d4;
  border-radius: 6px;
  font-size: 14px;
  max-width: 250px;
}

.wcgt-field textarea {
  max-width: 100%;
  resize: vertical;
}

.wcgt-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.wcgt-reset {
  background: #fff !important;
  color: #444 !important;
  border: 1px solid #ccd0d4 !important;
}

.wcgt-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.wcgt-switch input { display: none; }

.wcgt-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 24px;
  transition: 0.3s;
}

.wcgt-slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.wcgt-switch input:checked + .wcgt-slider {
  background-color: #0073aa;
}

.wcgt-switch input:checked + .wcgt-slider:before {
  transform: translateX(22px);
}

.wcgt-radio-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wcgt-radio-toggle label {
  cursor: pointer;
  padding: 4px 10px;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
}

.wcgt-radio-toggle input[type="radio"]:checked + label {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}