/*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/less/front/dashboard.less ***!
  \******************************************************************************************************************************************************************************************************************************************************/
/* Adumo Premium Services Dashboard Styles */
.wkmpa-seller-premium-dashboard {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}
.wkmpa-seller-premium-dashboard h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  border-left: 4px solid #101f31;
  padding-left: 15px;
}
.wkmpa-tabs-nav {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.wkmpa-tab-link {
  padding: 12px 20px;
  text-decoration: none;
  color: #777;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.wkmpa-tab-link:hover {
  color: #101f31;
  background: rgba(150, 88, 138, 0.05);
}
.wkmpa-tab-link.active {
  color: #101f31;
  border-bottom-color: #101f31;
}
.wkmpa-tab-content {
  display: none;
  animation: fadeIn 0.4s ease-out;
}
.wkmpa-tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wkmpa-service-card {
  background: #fcfcfc;
  border: 1px solid #edf2f7;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: box-shadow 0.3s ease;
}
.wkmpa-service-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.wkmpa-service-card h3 {
  margin-top: 0;
  font-size: 18px;
  color: #2d3748;
}
.wkmpa-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wkmpa-badge-active {
  background: #c6f6d5;
  color: #22543d;
}
.wkmpa-badge-pending {
  background: #feebc8;
  color: #744210;
}
.wkmpa-badge-inactive {
  background: #edf2f7;
  color: #4a5568;
}
/* Forms */
.wkmpa-select2 + .select2-container .select2-selection--multiple {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 5px;
}
.button-primary.wkmpa-btn {
  background: #101f31 !important;
  border-color: #101f31 !important;
  color: #fff !important;
  box-shadow: 0 4px 6px rgba(150, 88, 138, 0.2) !important;
  border-radius: 6px !important;
  padding: 8px 20px !important;
  height: auto !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}
.button-primary.wkmpa-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(150, 88, 138, 0.3) !important;
}
/* Table Style */
.wkmpa-seller-premium-dashboard table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
}
.wkmpa-seller-premium-dashboard th {
  background: #f7fafc;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  color: #4a5568;
  border-bottom: 2px solid #edf2f7;
}
.wkmpa-seller-premium-dashboard td {
  padding: 15px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: middle;
}
/* Dashboard Split Layout */
.wkmpa-dashboard-split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.wkmpa-dashboard-main {
  flex: 1;
  min-width: 300px;
}
.wkmpa-dashboard-sidebar {
  width: 300px;
  min-width: 250px;
}
/* Premium Store Grid */
.wkmpa-premium-store {
  margin-bottom: 40px;
}
.wkmpa-premium-store h4 {
  font-size: 16px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.wkmpa-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}
.wkmpa-dashboard-sidebar .wkmpa-plan-grid {
  grid-template-columns: 1fr;
}
.wkmpa-plan-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.wkmpa-plan-card:hover {
  border-color: #101f31;
  box-shadow: 0 10px 15px -3px rgba(150, 88, 138, 0.1);
}
.wkmpa-plan-info {
  margin-bottom: 15px;
}
.wkmpa-plan-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #2d3748;
}
.wkmpa-plan-duration {
  display: block;
  font-size: 13px;
  color: #718096;
  margin-top: 4px;
}
.wkmpa-plan-price {
  font-size: 20px;
  font-weight: 800;
  color: #101f31;
  margin-bottom: 20px;
}
.wkmpa-buy-now {
  width: 100%;
}
#banners .wkmpa-premium-store {
  margin-top: 40px;
}
/* Banner Submission Form V3 – Premium Layout */
.wkmpa-seller-banner-form-v3 {
  margin-top: 40px;
  animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wkmpa-form-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #edf2f7;
}
.wkmpa-form-header-v3 {
  background: linear-gradient(135deg, #101f31 0%, #17293f 100%);
  padding: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wkmpa-header-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wkmpa-header-icon i {
  font-size: 32px;
  width: 32px;
  height: 32px;
  color: #fff;
}
.wkmpa-form-header-v3 h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.wkmpa-form-header-v3 p {
  margin: 5px 0 0 0;
  opacity: 0.9;
  font-size: 14px;
}
.wkmpa-form-stepped {
  padding: 40px;
}
.wkmpa-step {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
}
.wkmpa-step:not(:last-of-type)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 50px;
  bottom: -30px;
  width: 2px;
  background: #edf2f7;
}
.wkmpa-step-number {
  width: 42px;
  height: 42px;
  background: #edf2f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #718096;
  flex-shrink: 0;
  font-size: 16px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #edf2f7;
}
.wkmpa-step-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}
.wkmpa-step-content {
  flex: 1;
}
.wkmpa-slot-grid-v3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}
.wkmpa-slot-card-v3 input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wkmpa-slot-card-v3 label {
  display: block;
  padding: 20px;
  border: 2px solid #edf2f7;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fafc;
  height: 100%;
}
.wkmpa-slot-card-v3 input[type="radio"]:checked + label {
  border-color: #101f31;
  background: #fff;
  box-shadow: 0 8px 20px rgba(150, 88, 138, 0.12);
  transform: translateY(-2px);
}
.wkmpa-slot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.wkmpa-slot-title {
  font-weight: 700;
  font-size: 16px;
  color: #1a202c;
}
.wkmpa-slot-cost {
  font-weight: 800;
  color: #101f31;
  font-size: 16px;
}
.wkmpa-slot-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wkmpa-slot-details span {
  font-size: 13px;
  color: #718096;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wkmpa-slot-details i {
  font-size: 16px;
  color: #a0aec0;
}
.wkmpa-select-wrapper {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 5px;
}
.wkmpa-select2-v3 + .select2-container--default .select2-selection--multiple {
  border: none !important;
  background: transparent !important;
  min-height: 50px;
}
.wkmpa-form-action-v3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.wkmpa-submit-v3 {
  background: #101f31;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(150, 88, 138, 0.3);
}
.wkmpa-submit-v3:hover {
  background: #7a4670;
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(150, 88, 138, 0.4);
}
.wkmpa-submit-v3:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.wkmpa-status-msg {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}
.wkmpa-max-hint-v3 {
  margin-top: 10px;
  color: #101f31;
  font-weight: 600;
  font-size: 13px;
}
@media (max-width: 768px) {
  .wkmpa-form-stepped {
    padding: 20px;
  }
  .wkmpa-step {
    flex-direction: column;
    gap: 15px;
  }
  .wkmpa-step::after {
    display: none;
  }
  .wkmpa-form-action-v3 {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .wkmpa-submit-v3 {
    width: 100%;
    justify-content: center;
  }
}
/* Active Plan Notifications */
.wkmpa-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.wkmpa-active-plan-notice {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wkmpa-plan-expiry {
  font-size: 13px;
  color: #22543d;
}
.wkmpa-plan-expiry strong {
  color: #1a4731;
}
.wkmpa-plan-disabled {
  opacity: 0.7;
  background: #f8fafc;
  border-color: #e2e8f0 !important;
  cursor: not-allowed;
  pointer-events: none;
}
.wkmpa-plan-disabled .wkmpa-plan-price {
  color: #a0aec0;
}
.wkmpa-plan-disabled .button {
  background: #cbd5e0 !important;
  border-color: #cbd5e0 !important;
}
/* Sponsored Dashboard Refinements */
.wkmpa-dashboard-section {
  margin-top: 30px;
  background: #fff;
  border-radius: 12px;
}
.wkmpa-selection-highlight {
  border: 2px dashed #101f31;
  background: #fffafb;
}
.wkmpa-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.wkmpa-order-tag {
  font-size: 11px;
  background: #edf2f7;
  padding: 3px 8px;
  border-radius: 4px;
  color: #4a5568;
}
.wkmpa-sponsored-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 15px;
  gap: 15px;
  margin-top: 15px;
}
.wkmpa-sponsored-item {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
}
.wkmpa-sponsored-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.wkmpa-item-thumb {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.wkmpa-item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.wkmpa-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.wkmpa-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wkmpa-empty-state-v3 {
  text-align: center;
  padding: 40px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  margin-top: 20px;
}
.wkmpa-empty-icon {
  font-size: 40px;
  color: #cbd5e0;
  margin-bottom: 15px;
}
.wkmpa-empty-state-v3 p {
  margin: 0;
  color: #718096;
  font-size: 15px;
}
.wkmpa-hint-text {
  font-size: 12px;
  color: #a0aec0;
  margin-top: 15px;
  font-style: italic;
}
/* Onboarding Status Styles */
.wkmpa-onboarding-container {
  max-width: 900px;
  margin: 20px 0;
}
.wkmpa-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.wkmpa-app-badge {
  background: #eef2ff;
  color: #d8901a;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #c7d2fe;
}
/* Timeline */
.wkmpa-status-timeline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  padding: 0 10px;
}
.wkmpa-status-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}
.wkmpa-timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.wkmpa-timeline-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}
.wkmpa-timeline-icon .step-num {
  font-weight: 700;
  color: #9ca3af;
}
.wkmpa-timeline-icon .check-icon {
  display: none;
  color: #fff;
}
.wkmpa-timeline-item.is-active .wkmpa-timeline-icon {
  border-color: #d8901a;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
.wkmpa-timeline-item.is-active .wkmpa-timeline-icon .step-num {
  color: #d8901a;
}
.wkmpa-timeline-item.is-completed .wkmpa-timeline-icon {
  background: #d8901a;
  border-color: #d8901a;
}
.wkmpa-timeline-item.is-completed .wkmpa-timeline-icon .step-num {
  display: none;
}
.wkmpa-timeline-item.is-completed .wkmpa-timeline-icon .check-icon {
  display: block;
}
.wkmpa-timeline-content h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: #111827;
}
.wkmpa-timeline-content p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}
/* Details Card */
.wkmpa-status-details-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.wkmpa-notice {
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}
.wkmpa-notice.info {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  color: #1e40af;
}
.wkmpa-notice.success {
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  color: #065f46;
}
.wkmpa-notice.error {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  color: #991b1b;
}
.wkmpa-payment-box {
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}
.wkmpa-payment-box p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.wkmpa-payment-box .highlight {
  color: #d8901a;
  font-weight: 700;
}
.wkmpa-instruction-block h4 {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.mt-4 {
  margin-top: 1.5rem;
}
.wkmpa-text-muted {
  color: #6b7280;
}
.wkmpa-badge-resolved {
  background: #c6f6d5;
  color: #22543d;
}
/* Holiday Mode Widget Refinement */
.wkmpa-holiday-widget {
  background: #fff;
  border: 1px solid #edf2f7;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}
.wkmpa-holiday-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f7fafc;
}
.wkmpa-holiday-header h3 {
  margin: 0;
  color: #1a202c;
  font-size: 20px;
  font-weight: 700;
}
.wkmpa-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wkmpa-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Switch styling */
.wkmpa-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.wkmpa-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.wkmpa-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cbd5e0;
  transition: 0.4s;
}
.wkmpa-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.4s;
}
input:checked + .wkmpa-slider {
  background: #101f31;
}
input:focus + .wkmpa-slider {
  box-shadow: 0 0 1px #101f31;
}
input:checked + .wkmpa-slider:before {
  transform: translateX(24px);
}
.wkmpa-slider.round {
  border-radius: 34px;
}
.wkmpa-slider.round:before {
  border-radius: 50%;
}
.wkmpa-holiday-desc {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}
#wkmpa-holiday-form {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
}
.wkmpa-form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.wkmpa-form-group {
  flex: 1;
  min-width: 200px;
}
.wkmpa-form-group label {
  display: block;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 8px;
  font-size: 14px;
}
.wkmpa-form-group input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #2d3748;
}
.wkmpa-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wkmpa-holiday-save {
  padding: 10px 24px !important;
  height: auto !important;
  background: #000;
  color: #fff;
}
.wkmpa-holiday-save:hover {
  border: 1px solid #000;
  color: #000;
  background: transparent;
}
.wkmpa-msg {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.wkmpa-msg.success {
  color: #38a169;
}
.wkmpa-msg.error {
  color: #e53e3e;
}
#wkmpa-sale-schedule-wrapper {
  margin-bottom: 15px;
}
.wkmpa-sale-schedule-toggle,
.wkmpa-sale-schedule-cancel {
  font-size: 13px;
  text-decoration: underline;
}
.wkmpa-sale-schedule-fields .wkmp-form-row {
  display: flex;
  justify-content: flex-start;
  padding: 0 !important;
  gap: 10px;
}
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--customer-logout,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--dashboard,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--downloads,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--edit-account,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--edit-address,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--orders,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--payment-methods,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--review,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--wishlist,
.wkmp-seller-endpoints.wkmp-hide-customer-endpoints .woocommerce-MyAccount-navigation-link--rma {
  display: none;
}
/* Re-application Section */
.wkmpa-reapply-section {
  margin-top: 25px;
  padding: 20px;
  border: 1px dashed #d32f2f;
  border-radius: 8px;
  background: #fff;
}
.wkmpa-reapply-section h4 {
  margin-top: 0;
  color: #d32f2f;
}
.wkmpa-reapply-section p {
  color: #4a5568;
}
.wkmpa-reapply-section ol {
  margin: 15px 0;
  padding-left: 20px;
  color: #666;
}
.wkmpa-reapply-section ol li {
  margin-bottom: 8px;
}
.wkmpa-reapply-section ol li a {
  color: #d8901a;
  font-weight: 600;
  text-decoration: none;
}
.wkmpa-reapply-section ol li a:hover {
  text-decoration: underline;
}
.wkmpa-btn-resubmit {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
}
.wkmpa-btn-resubmit:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
}
.wkmpa-btn-resubmit:active {
  transform: translateY(0);
}
.wkmpa-btn-resubmit i {
  font-size: 18px;
  width: 18px;
  height: 18px;
}


/*# sourceMappingURL=dashboard.css.map*/