/* Full page center */
.wp-login-page {
  width: 100%;
  min-height: 100vh;
  background: #f0f0f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen;
}

/* Login box */
.wp-login-box {
  width: 320px;
  background: #fff;
  padding: 26px 24px 34px;
  border: 1px solid #c3c4c7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Logo / Heading */
.wp-login-logo {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1d2327;
}

/* Field wrapper */
.wp-field {
  margin-bottom: 16px;
}

.wp-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #1d2327;
}

/* Inputs */
.wp-field input {
  width: 100%;
  padding: 6px 8px;
  font-size: 14px;
  border: 1px solid #8c8f94;
  border-radius: 2px;
  background: #fff;
}

.wp-field input:focus {
  border-color: #2271b1;
  outline: none;
  box-shadow: 0 0 0 1px #2271b1;
}

/* Button */
.wp-login-btn {
  width: 100%;
  margin-top: 10px;
  padding: 8px 0;
  background: #2271b1;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;
}

.wp-login-btn:hover {
  background: #135e96;
}

.wp-login-btn:disabled {
  background: #a7aaad;
  cursor: not-allowed;
}

/* wp sidebar code start */
/* Sidebar container */
.wp-sidebar {
  width: 200px;
  height: 100vh;
  background: #1d2327;
  color: #f0f0f1;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

/* Header */
.wp-sidebar-header {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #2c3338;
}

/* Menu */
.wp-menu {
  flex: 1;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 0;
  gap: 5px;
  background: transparent !important;
}

.wp-menu-item {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 7px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  color: #c3c4c7;
  min-height: 45px;
}

.wp-menu-item:hover {
  background: #2c3338;
  color: #fff;
}

.wp-menu-item.active {
  background: #2271b1;
  color: #fff;
}

/* Footer */
.wp-sidebar-footer {
  padding: 10px;
  border-top: 1px solid #2c3338;
}

/* Logout button */
.wp-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: transparent;
  border: none;
  color: #c3c4c7;
  font-size: 13px;
  cursor: pointer;
}

.wp-logout-btn:hover {
  background: #2c3338;
  color: #fff;
}

.wp-logout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* wp sidebar code end */

/* wp dashboard ui */
/* Wrapper */
.wp-wrap {
  width: 100%;
  overflow: auto;
  padding: 20px;
  background: #f0f0f1;
  min-height: 100vh;
  overflow-x: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

/* Header */
.wp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.wp-header h1 {
  margin: 0;
  font-size: 23px;
  font-weight: 400;
}

.wp-header .description {
  font-size: 13px;
  color: #646970;
}

/* Buttons */
.wp-btn {
  background: #2271b1;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
}

.wp-btn:hover {
  background: #135e96;
}

/* Grid */
.wp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.wp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

/* Cards */
.wp-card {
  background: #fff;
  border: 1px solid #c3c4c7;
  padding: 16px;
}

.wp-card span {
  display: block;
  font-size: 13px;
  color: #646970;
}

.wp-card strong {
  font-size: 22px;
  font-weight: 600;
}

/* Tables */
.wp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

.wp-table th,
.wp-table td {
  border: 1px solid #c3c4c7;
  padding: 8px;
  text-align: left;
}

.wp-table th {
  background: #f6f7f7;
  font-weight: 600;
}

/* wp dashboard ui end */

/* wp users ui code start */
button {
  cursor: pointer;
}
.wp-users-page .wp-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #c3c4c7;
  padding: 8px;
  margin-bottom: 12px;
}
.wp-users-page .wp-filter-bar .status-select {
  border-radius: 0;
  padding: 4px 6px;
  min-height: 35px;
}
.button-primary {
  background: #135e96;
  color: white;
  padding: 8px 5px;
  min-width: 100px;
  min-height: 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}

.wp-users-page .wp-search {
  min-width: 260px;
  padding: 4px 6px;
  border: 1px solid #c3c4c7;
  min-height: 35px;
}

/* TABLE OVERFLOW FIX */
.wp-users-page .wp-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #c3c4c7;
}

.wp-users-page .wp-list-table {
  min-width: 1000px;
  border-collapse: collapse;
}

.wp-users-page .wp-list-table th,
.wp-users-page .wp-list-table td {
  padding: 10px 8px;
  border: 1px solid #c3c4c7;
  white-space: nowrap;
  width: 100%;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* STATUS */
.wp-users-page .wp-status {
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 2px;
}

.wp-users-page .wp-status.ACTIVE {
  background: #ecf7ed;
  color: #46b450;
}

.wp-users-page .wp-status.PENDING {
  background: #fef8ee;
  color: #dba617;
}

.wp-users-page .wp-status.BANNED {
  background: #fbeaea;
  color: #dc3232;
}

/* PAGINATION */
.wp-users-page .wp-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

/* MODAL */
.wp-users-page .wp-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  z-index: 9999;
}

.wp-users-page .wp-modal {
  background: #fff;
  width: 520px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 16px;
  border: 1px solid #c3c4c7;
}

.wp-users-page .wp-modal label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

.wp-users-page .wp-modal input,
.wp-users-page .wp-modal select {
  width: 100%;
  padding: 6px;
  margin-top: 4px;
  background: rgba(128, 128, 128, 0.1);
  border-radius: 6px;
}

.wp-users-page .wp-modal-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.wp-users-page .wp-modal-actions button {
  padding: 8px 15px;
  min-width: 80px;
}

/* wp users ui code end */

/* recharge page ui code start */
/* =====================================================
   RECHARGES PAGE (WORDPRESS STYLE)
===================================================== */

.wp-recharges-page {
  background: #f0f0f1;
}

.wp-recharges-page .wp-content {
  max-width: 1280px;
  margin: 0 auto;
}

/* =====================================================
   PAGE HEADING
===================================================== */
.wp-recharges-page .wp-heading {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 12px;
}

/* =====================================================
   FILTER BAR
===================================================== */
.wp-recharges-page .wp-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #c3c4c7;
  padding: 10px;
  margin-bottom: 14px;
}

.wp-recharges-page .wp-filter-bar select {
  border-radius: 0;
  padding: 4px 6px;
  min-height: 35px;
}

.wp-recharges-page .wp-search {
  min-width: 260px;
  padding: 4px 6px;
  border: 1px solid #c3c4c7;
  min-height: 35px;
}

/* =====================================================
   CURRENCY TABS
===================================================== */
.wp-recharges-page .wp-tabs {
  display: flex;
  gap: 6px;
}

.wp-recharges-page .wp-tab {
  padding: 5px 14px;
  border: 1px solid #c3c4c7;
  background: #f6f7f7;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
}

.wp-recharges-page .wp-tab.active {
  background: #2271b1;
  color: #fff;
  border-color: #2271b1;
}

/* =====================================================
   TABLE WRAPPER + TABLE
===================================================== */
.wp-recharges-page .wp-table-wrap {
  background: #fff;
  border: 1px solid #c3c4c7;
  overflow-x: auto;
}

.wp-recharges-page .wp-list-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  font-size: 13px;
}

.wp-recharges-page .wp-list-table th,
.wp-recharges-page .wp-list-table td {
  padding: 10px 10px;
  border: 1px solid #c3c4c7;
  vertical-align: top;
  white-space: nowrap;
}

.wp-recharges-page .wp-list-table th {
  background: #f6f7f7;
  font-weight: 600;
}

.wp-recharges-page .wp-list-table tr:nth-child(even) {
  background: #fcfcfc;
}

/* =====================================================
   META CELL (IMPORTANT)
===================================================== */
.wp-recharges-page .meta-cell {
  max-width: 320px;
  white-space: pre-line;
  word-break: break-word;
  font-size: 12px;
  line-height: 1.4;
  background: #fcfcfc;
}

/* =====================================================
   STATUS BADGES
===================================================== */
.wp-status {
  display: inline-block;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 2px;
}

.wp-status.SUCCESS {
  background: #ecf7ed;
  color: #46b450;
}

.wp-status.IN_PROGRESS {
  background: #e5f1fb;
  color: #2271b1;
}

.wp-status.PENDING {
  background: #fef8ee;
  color: #dba617;
}

.wp-status.TIMEOUT,
.wp-status.CANCELLED {
  background: #fbeaea;
  color: #dc3232;
}

/* =====================================================
   ACTION LINK
===================================================== */
.wp-recharges-page .link-button {
  background: none;
  border: none;
  color: #2271b1;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
}

.wp-recharges-page .link-button:hover {
  text-decoration: underline;
}

/* =====================================================
   WORDPRESS STYLE DIALOG
===================================================== */

/* Backdrop */
.wp-dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  z-index: 9999;
}

/* Dialog box */
.wp-dialog {
  width: 480px;
  background: #fff;
  border: 1px solid #c3c4c7;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 160px);
}

/* Header */
.wp-dialog-header {
  padding: 12px 16px;
  border-bottom: 1px solid #c3c4c7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-dialog-header h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.wp-dialog-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

/* Body */
.wp-dialog-body {
  padding: 16px;
  overflow-y: auto;
}

.wp-dialog-body .wp-field {
  margin-bottom: 14px;
}

.wp-dialog-body label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.wp-dialog-body input,
.wp-dialog-body select {
  width: 100%;
  padding: 6px;
  font-size: 13px;
  border: 1px solid #8c8f94;
}

.wp-dialog-body input:focus,
.wp-dialog-body select:focus {
  outline: none;
  border-color: #2271b1;
}

/* Footer */
.wp-dialog-footer {
  padding: 12px 16px;
  border-top: 1px solid #c3c4c7;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* =====================================================
   BUTTONS (SAFE OVERRIDE)
===================================================== */
.button-primary {
  background: #2271b1 !important;
  color: #fff;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
}

.button-primary:hover {
  background: #135e96;
}

.button-secondary {
  background: #f6f7f7;
  border: 1px solid #c3c4c7;
  padding: 6px 14px;
  cursor: pointer;
}

/* recharge page ui code end */

/* =====================================================
   WITHDRAW PAGE (WORDPRESS STYLE)
===================================================== */

.wp-withdraw-page .wp-content {
  max-width: 1280px;
  margin: 0 auto;
}

.wp-withdraw-page .wp-tabs {
  display: flex;
  gap: 6px;
}

.wp-withdraw-page .wp-tab {
  padding: 5px 14px;
  border: 1px solid #c3c4c7;
  background: #f6f7f7;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
}

.wp-withdraw-page .wp-tab.active {
  background: #2271b1;
  color: #fff;
  border-color: #2271b1;
}
.wp-withdraw-page .wp-content .wp-heading {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 12px;
}

.wp-withdraw-page .wp-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #c3c4c7;
  padding: 10px;
  margin-bottom: 14px;
}

.wp-withdraw-page .wp-filter-bar select {
  border-radius: 0;
  padding: 4px 6px;
  min-height: 35px;
}

.wp-withdraw-page .wp-search {
  min-width: 260px;
  padding: 4px 6px;
  border: 1px solid #c3c4c7;
  min-height: 35px;
}

/* TABLE */
.wp-withdraw-page .wp-table-wrap {
  background: #fff;
  border: 1px solid #c3c4c7;
  overflow-x: auto;
}

.wp-withdraw-page .wp-list-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  font-size: 13px;
}

.wp-withdraw-page .wp-list-table th,
.wp-withdraw-page .wp-list-table td {
  padding: 10px;
  border: 1px solid #c3c4c7;
  vertical-align: top;
}

.wp-withdraw-page .wp-list-table th {
  background: #f6f7f7;
}

/* PAYMENT METHOD SELECT */
.wp-withdraw-page .wp-method {
  padding: 10px;
  border: 1px solid #c3c4c7;
  margin-top: 6px;
  cursor: pointer;
  background: #f9fafb;
}

.wp-withdraw-page .wp-method.active {
  border-color: #2271b1;
  background: #e5f1fb;
}

/* DIALOG WIDE */
.wp-dialog-wide {
  width: 720px;
}

/* INPUTS */
.wp-withdraw-page .wp-field input {
  width: 100%;
  padding: 6px;
  font-size: 13px;
}

/* =====================================================
   VIDEO TUTORIALS PAGE (WP STYLE)
===================================================== */

.wp-videos-page .wp-content {
  max-width: 1280px;
  margin: 0 auto;
}

/* Thumbnail */
.wp-videos-page img {
  display: block;
}

/* Table */
.wp-videos-page .wp-list-table td {
  vertical-align: middle;
}

.wp-videos-page .wp-list-table td:nth-child(4) {
  max-width: 320px;
  word-break: break-word;
  font-size: 12px;
}
td .link-button {
  padding: 8px 15px;
  background: rgba(128, 128, 128, 0.1);
  margin-left: 10px;
}

.wp-content .wp-tabs {
  display: flex;
  gap: 6px;
}

.wp-content .wp-tab {
  padding: 5px 14px;
  border: 1px solid #c3c4c7;
  background: #f6f7f7;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
}

.wp-content .wp-tab.active {
  background: #2271b1;
  color: #fff;
  border-color: #2271b1;
}
.wp-content .wp-heading {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 12px;
}

.wp-content .wp-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #c3c4c7;
  padding: 10px;
  margin-bottom: 14px;
}

.wp-content .wp-filter-bar select {
  border-radius: 0;
  padding: 4px 6px;
  min-height: 35px;
}

.wp-content .wp-search {
  min-width: 260px;
  padding: 4px 6px;
  border: 1px solid #c3c4c7;
  min-height: 35px;
}
.wp-content .wp-table-wrap {
  background: #fff;
  border: 1px solid #c3c4c7;
  overflow-x: auto;
}

.wp-content .wp-list-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  font-size: 13px;
}

.wp-content .wp-list-table th,
.wp-content .wp-list-table td {
  padding: 10px;
  border: 1px solid #c3c4c7;
  vertical-align: top;
}

.wp-content .wp-list-table th {
  background: #f6f7f7;
}

/* ===============================
   INR PLANS – WP STYLE
================================ */

.wp-inr-plans-page .wp-content {
  max-width: 1280px;
  margin: 0 auto;
}

/* Table tweaks */
.wp-inr-plans-page .wp-list-table th,
.wp-inr-plans-page .wp-list-table td {
  vertical-align: middle;
}

.wp-inr-plans-page .wp-list-table td:nth-child(6) {
  font-size: 12px;
}

/* Danger action */
.wp-inr-plans-page .link-button.danger {
  color: #dc3232;
}

/* ===============================
   SYSTEM SETTINGS – WP STYLE
================================ */

.sys-page {
  width: 100%;
  /* max-width: 1280px; */
  margin: 0 auto;
  /* padding: 20px; */
  color: #1d2327;
  font-size: 13px;
  overflow-x: auto;
}

/* NAV */
.sys-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: none;
  margin-bottom: 18px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  /* background: #1d2327; */
}

.sys-title {
  font-size: 20px;
  font-weight: 600;
}

.nav-actions {
  margin-left: auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
}

.save-btn {
  background: #2271b1;
  border: 1px solid #2271b1;
  color: #fff;
}

.save-btn:hover {
  background: #135e96;
  border-color: #135e96;
}

/* MAIN */
.sys-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CARD */
.card {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 6px;
  padding: 16px;
  margin: 20px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.row.full {
  grid-column: 1 / -1;
}

/* LABEL + INPUT */
.label {
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.input,
.textarea {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  font-size: 13px;
}

.textarea {
  min-height: 90px;
  resize: vertical;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

/* NUMBER FIELD WITH UNIT */
.field-row {
  display: flex;
  align-items: center;
}

.unit {
  margin-left: 6px;
  font-size: 12px;
  color: #646970;
}

/* HELPER TEXT */
.helper {
  font-size: 12px;
  color: #646970;
  margin-top: 4px;
}

/* TOGGLE */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle {
  position: relative;
  width: 42px;
  height: 22px;
}

.toggle input {
  display: none;
}

.toggle .track {
  position: absolute;
  inset: 0;
  background: #c3c4c7;
  border-radius: 20px;
  transition: 0.2s;
}

.toggle .thumb {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: 0.2s;
}

.toggle input:checked + .track {
  background: #2271b1;
}

.toggle input:checked + .track .thumb {
  transform: translateX(20px);
}

/* CRON BOX */
.inviteBox {
  margin-top: 24px;
  border: 1px dashed #c3c4c7;
  padding: 14px;
  border-radius: 6px;
  background: #f6f7f7;
}

.inviteLabel {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.inviteInner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inviteText {
  font-family: monospace;
  font-size: 12px;
  word-break: break-all;
  flex: 1;
}

.copyBtn {
  background: #fff;
  border: 1px solid #c3c4c7;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
}

.copyBtn:hover {
  background: #ececec;
}

/* FOOTER */
.sys-footer {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-top: 12px;
  border-top: 1px solid #dcdcde;
  margin: 20px;
}

.footer-left {
  font-size: 12px;
  color: #646970;
}

.footer-actions {
  margin-left: auto;
}

/* LOADING / ERROR */
.sys-loading,
.sys-error {
  padding: 30px;
  text-align: center;
  font-size: 14px;
}

.save-btn i {
  color: white;
  font-size: 16px;
}

.wp-modal-bg {
  background: #00000080;
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wp-modal-bg .wp-modal {
  background: white;
  max-width: 500px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-height: 600px;
  overflow-x: auto;
}
.wp-modal-bg .wp-modal .data {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.wp-modal-bg .wp-modal .data .item {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
}
.wp-modal-bg .wp-modal .data #modalTitle {
  font-size: 18px;
  margin-bottom: 20px;
}
.wp-modal-bg .wp-modal label {
  width: 100%;
  font-size: 14px;
  color: var(--muted);
  margin-top: 15px;
}
.wp-modal-bg .wp-modal input,
.wp-modal-bg .wp-modal select {
  margin-top: 8px;
  width: 100%;
  min-height: 50px;
  border-radius: 6px;
  background: #77777714;
  padding: 0 10px;
}
.wp-modal-bg .wp-modal .wp-modal-actions {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.wp-method-list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}
.wp-method-list .wp-method {
    border-radius: 6px;
    border: 1px solid #77777747;
    padding: 10px;
}
.wp-method-list .wp-method.active{
  border: 1px solid green;
}
.wp-method-list .wp-method .wp-method-right{
  color: var(--accent);
}
.wp-method-list .wp-method.active .wp-method-right{
  color: green;
}
