.wcs-licenses-manage-overview thead {
    background-color: #EFF3F6;
}

/* manage lincence single page */
/* =====================================================
   ROOT WRAPPER
===================================================== */
.wcs-license-manage-single {
  display: flex;
  gap: 32px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

/* =====================================================
   LEFT CARD
===================================================== */
.wcs-license-manage-single .wcf-license-left {
  flex: 1.7;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
}

/* =====================================================
   HEADER AREA
===================================================== */
.wcs-license-manage-single .wcf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
}

.wcs-license-manage-single .wcf-header-inner h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.wcs-license-manage-single .wcf-header-inner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

.wcs-license-manage-single .wcf-header-inner code {
  background: transparent;
  font-size: 14px;
  color: #6b7280;
}

/* =====================================================
   SEARCH INPUT
===================================================== */
.wcs-license-manage-single .wcf-search-license {
  height: 42px;
  padding: 0 14px 0 38px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 12px center;
  background-size: 18px;
  font-size: 14px;
  color: #111827;
}

/* =====================================================
   TABLE
===================================================== */
.wcs-license-manage-single table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
}

/* table head */
.wcs-license-manage-single thead th {
  background: #f6f9fa;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

/* body rows */
.wcs-license-manage-single tbody td {
  padding: 16px 18px;
  font-size: 15px;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

.wcs-license-manage-single tbody tr:last-child td {
  border-bottom: 0;
}

/* =====================================================
   ACTION LINK
===================================================== */
.wcs-license-manage-single table a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

/* =====================================================
   EMPTY STATE (when no activation)
===================================================== */
.wcs-license-manage-single tbody tr td[colspan] {
  text-align: center;
  padding: 22px;
  color: #6b7280;
}

/* =====================================================
   RIGHT CARD
===================================================== */
.wcs-license-manage-single .wcf-license-right {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  align-self: flex-start;
}

/* =====================================================
   FORM
===================================================== */
.wcs-license-manage-single .edd_sl_form p {
  margin: 0 0 18px;
  font-size: 15px;
  color: #374151;
}

.wcs-license-manage-single .edd_sl_form input[type="text"] {
  width: 100%;
  height: 44px;
  padding: 0 14px !important;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  margin-bottom: 16px;
}

/* button */
.wcs-license-manage-single .edd_sl_form .button-primary {
  background: #2563eb;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .wcs-license-manage-single {
    flex-direction: column;
  }
}