/* KKL alert button - compact, cleaner spacing */
.kkl-alert-box{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:6px 0 8px;
  padding:0;
}

.kkl-alert-btn{
  appearance:none;
  border:none;
  cursor:pointer;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:linear-gradient(90deg,#111827 0%, #1f2937 100%);
  color:#fff;
  font-family:'IBM Plex Sans Thai',system-ui,sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:0;
  box-shadow:0 6px 16px rgba(17,24,39,.14);
  transition:.18s ease;
  line-height:1;
}

.kkl-alert-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(17,24,39,.18);
}

.kkl-alert-btn:disabled{
  opacity:.75;
  cursor:wait;
}

.kkl-alert-btn.is-on{
  background:linear-gradient(90deg,#a51317 0%, #d97706 100%);
}

.kkl-alert-note{
  font-family:'IBM Plex Sans Thai',system-ui,sans-serif;
  font-size:13px;
  color:#6b7280;
  line-height:1.35;
  margin:0;
}

@media (max-width: 768px){
  .kkl-alert-box{
    gap:8px;
    margin:4px 0 6px;
  }

  .kkl-alert-btn{
    min-height:40px;
    padding:0 14px;
    font-size:13px;
  }

  .kkl-alert-note{
    font-size:12px;
  }
}