/* Gunakan layout flex standar WordPress */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.col-6 {
  flex: 0 0 48%;
  box-sizing: border-box;
}
.col-12 {
  flex: 0 0 100%;
  box-sizing: border-box;
}

/* Kotak hasil */
.result-box { border-radius: .3rem; border:1px solid #ddd; text-align: center; }
.result-title { font-size: .99rem; background-color: #f1f5f9; color: #111; padding: 8px;font-weight:600; }
.result-value { font-size: .95rem; background-color: #fff; color: #333; padding: 8px; }

/* Tabel mirip editor WP */
table.table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 0.5rem;
}

.table td {
  padding: 8px;
  border: 1px solid #dcdcde;
  vertical-align: top;
  font-size: 14px;
  color: #333;
}

.text-left,
.text-sm-start {
  text-align: left;
}

.text-danger {
  color: #d63638; /* warna merah WordPress admin */
}
input,select {padding: 6px 10px;border-radius: 4px;box-sizing: border-box;border:1px solid #dedede;min-width:11% !important;margin-right:11px !important;margin-top:8px !important;}
label{margin-right:5px !important;}
.btn-danger {background-color: #dc3545;color: #fff;border: 1px solid #dc3545;padding: 10px 20px;border-radius: 3px;cursor: pointer;transition: background-color 0.2s ease-in-out, border-color 0.2s;}.btn-danger:hover {background-color: #c82333;border-color: #bd2130;}.btn-primary {background-color: #0073aa;color: #fff;border: 1px solid #0073aa;padding: 10px 20px;border-radius: 3px;cursor: pointer;transition: background-color 0.2s ease-in-out, border-color 0.2s;}.btn-primary:hover {background-color: #005b8c;border-color: #004e7a;}
#spinner{display:none;text-align:center;margin-bottom:15px;font-family:sans-serif;width:100%;margin:20px auto;color:#333}
.spinner{display:inline-block;width:30px;height:30px;border:3px solid #ccc;border-top:3px solid #f30;border-radius:50%;animation:spin 0.8s linear infinite;margin:0 auto 10px}
@keyframes spin{to{transform:rotate(360deg)}}
select{background-color:#fff !important;border:1px solid #dedede;border-radius:3px; padding:8px!important;margin-right:8px !important}
select:hover{background-color:#fafafa !important}
label{font-weight:600;}

@media (max-width: 768px) {
  .col-6 {
    flex: 0 0 100%;
  }

  .result-title,
  .result-value {
    font-size: 0.95rem;
    padding: 10px;
  }

  .table td {
    font-size: 13px;
    padding: 6px;
  }

  select {
    width: 100% !important;
    margin-bottom: 10px !important;
  }
}

@media (max-width: 480px) {
  .result-title {
    font-size: 0.9rem;
  }

  .result-value {
    font-size: 0.88rem;
  }

  .table td {
    font-size: 12px;
  }

  label {
    display: block;
    margin-bottom: 6px;
  }
}
