/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */


 
.wptwdclt_admin_wrapper {
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #1e293b; /* dark gray for text */
  background: #ffffff; /* secondary color */
  padding: 20px;
  border-radius: 6px;
}

/* Headings */
.wptwdclt_admin_wrapper .wbd-main-heading span {
  font-size: 22px;
  font-weight: 600;
  color: #19be4d; /* Primary blue */
}

/* Navigation Tabs */
.wptwdclt_admin_wrapper .nav-tab-wrapper {
  margin: 20px 0;
  border-bottom: 2px solid #e2e8f0;
}

.wptwdclt_admin_wrapper .nav-tab {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-bottom: none;
  padding: 8px 16px;
  margin-right: 6px;
  color: #1e293b;
  font-weight: 500;
  border-radius: 6px 6px 0 0;
  text-decoration: none;
}

.wptwdclt_admin_wrapper .nav-tab-active {
  background: #19be4d; /* Primary */
  color: #ffffff; /* Secondary */
  border-color: #19be4d;
}

/* Tables */
.wptwdclt_admin_wrapper .form-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.wptwdclt_admin_wrapper .form-table th,
.wptwdclt_admin_wrapper .form-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
  vertical-align: middle;
}

.wptwdclt_admin_wrapper .form-table th {
  background: #f8fafc;
  font-weight: 600;
  width: 250px;
  color: #1e293b;
}

.wptwdclt_admin_wrapper .form-table td .descr {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* Select & Input fields */
.wptwdclt_admin_wrapper select,
.wptwdclt_admin_wrapper input[type="text"],
.wptwdclt_admin_wrapper textarea {
  width: 100%;
  max-width: 400px;
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 14px;
  background: #ffffff;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.wptwdclt_admin_wrapper select:focus,
.wptwdclt_admin_wrapper input[type="text"]:focus,
.wptwdclt_admin_wrapper textarea:focus {
  border-color: #19be4d;
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.25);
  outline: none;
}

/* Checkbox styling */
.wptwdclt_admin_wrapper input[type="checkbox"] {
  accent-color: #19be4d; /* Primary blue */
  transform: scale(1.2);
  margin-right: 8px;
}

/* Submit button */
.wptwdclt_admin_wrapper .wbd-button {
  background: #19be4d;
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.wptwdclt_admin_wrapper .wbd-button:hover {
  background: #ffffff; /* darker blue */
   color: #19be4d;
    border: 1px solid #19be4d;
}

/* Responsive */
@media (max-width: 768px) {
  .wptwdclt_admin_wrapper .form-table th {
    width: 100%;
    display: block;
    border-bottom: none;
  }

  .wptwdclt_admin_wrapper .form-table td {
    display: block;
    border-bottom: 1px solid #f1f5f9;
    padding-top: 0;
  }

  .wptwdclt_admin_wrapper .form-table td .descr {
    margin-bottom: 12px;
  }

  .wptwdclt_admin_wrapper select,
  .wptwdclt_admin_wrapper input[type="text"],
  .wptwdclt_admin_wrapper textarea {
    max-width: 100%;
  }
}

/* ================================
   Multiselect Styling
   ================================ */
.wptwdclt_admin_wrapper .wptwdclt-multiselect {
  width: 100%;
  max-width: 400px;
  min-height: 120px;
  padding: 6px 8px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 14px;
  background: #ffffff; /* secondary */
  color: #1e293b;
  cursor: pointer;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.wptwdclt_admin_wrapper .wptwdclt-multiselect:focus {
  border-color: #19be4d; /* primary */
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.25);
  outline: none;
}

/* Individual option styling */
.wptwdclt_admin_wrapper .wptwdclt-multiselect option {
  padding: 6px 8px;
  border-radius: 3px;
}

/* Highlight selected options */
.wptwdclt_admin_wrapper .wptwdclt-multiselect option:checked {
  background: #19be4d; /* primary */
  color: #ffffff; /* secondary */
}

/* Hover effect for options (modern browsers) */
.wptwdclt_admin_wrapper .wptwdclt-multiselect option:hover {
  background: #e0e7ff;
}

/* Responsive: full width on small screens */
@media (max-width: 768px) {
  .wptwdclt_admin_wrapper .wptwdclt-multiselect {
    max-width: 100%;
  }
}

.wptwdclt_hide{
    display: none !important;
}


