/* Soumikaro Vendor Coupon Manager Styles */
.soumikaro-dashboard, .soumikaro-vendor-dashboard {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 32px;
}
.soumikaro-kpis {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}
.soumikaro-kpis > div {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 18px 28px;
  font-size: 1.1em;
  color: #1a202c;
  min-width: 160px;
  text-align: center;
}
.soumikaro-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.soumikaro-table th, .soumikaro-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
}
.soumikaro-table th {
  background: #f1f5f9;
  color: #374151;
  font-weight: 600;
}
.soumikaro-table tr:last-child td {
  border-bottom: none;
}
.soumikaro-btn, .soumikaro-table button, .soumikaro-table input[type="submit"] {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.soumikaro-btn:hover, .soumikaro-table button:hover, .soumikaro-table input[type="submit"]:hover {
  background: #1d4ed8;
}
.soumikaro-form-table label {
  font-weight: 500;
  color: #334155;
}
.soumikaro-form-table input, .soumikaro-form-table select, .soumikaro-form-table textarea {
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  padding: 7px 12px;
  font-size: 1em;
  width: 100%;
  margin-bottom: 8px;
  background: #f9fafb;
}
.soumikaro-form-table input:focus, .soumikaro-form-table select:focus, .soumikaro-form-table textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
}
.soumikaro-section-title {
  font-size: 1.3em;
  color: #2563eb;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .soumikaro-kpis {
    flex-direction: column;
    gap: 12px;
  }
  .soumikaro-table th, .soumikaro-table td {
    padding: 8px 6px;
    font-size: 0.95em;
  }
}
