* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #04070a;
  color: #eafff5;
}

.wrapper {
  max-width: 1080px;
  width: 95%;
  margin: 20px auto;
  padding: 0 10px;
}

/* TITLE */
.title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 18px;
  color: white;
  text-shadow: 0 0 10px blue;
}

/* TAB PROFIL */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.tab {
  padding: 7px 13px;
  border-radius: 9px;
  background: #0b151a;
  border: 1px solid #00ffc62e;
  cursor: pointer;
  font-size: 14px;
  color: white;
  transition: all 0.2s;
}

.tab.active {
  background: white;
  color: black;
  font-weight: 600;
  border-color: white;
}

/* BUTTON */
.top-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.btn {
  padding: 9px 17px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.18s;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.blast-all {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  height: 40px;
  /* Perkecil tinggi tombol */
  min-width: 150px;
  /* Lebar tetap */
}

.btn.blast-all.stop {
  background: linear-gradient(135deg, #434343, #000000);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn.scan {
  background: linear-gradient(135deg, #06b6d4, #0891b2, #0e7490);
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.5),
    0 0 30px rgba(6, 182, 212, 0.2);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.btn.scan::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn.scan:hover::before {
  left: 100%;
}

.btn.scan:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6),
    0 0 50px rgba(6, 182, 212, 0.3);
}

.btn.save {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
  color: white;
}

.btn.clear {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: white;
}

.btn.add {
  background: #00c853;
  color: white;
  min-width: 36px;
}

.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.97);
}

/* CARD PROFIL */
.account-card {
  background: rgba(7, 13, 18, 0.88);
  border: 1px solid #00ffc61c;
  border-radius: 16px;
  padding: 20px;
  margin-top: 8px;
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
}

/* STATUS */
.status-line {
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  min-height: 24px;
}

.status-text {
  font-weight: 600;
  color: #00ffc6;
  margin-left: 5px;
}

/* QR */
.qr-img {
  display: none;
  width: 240px;
  margin: 10px auto 16px auto;
  border: 2px solid #00ffc6;
  border-radius: 12px;
}

/* ============ NOMOR & PESAN - FIX ALIGNMENT ============ */
.two-col {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 15px;
  align-items: flex-start;
}

/* Container kiri (nomer) */
.numbers-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Container kanan (pesan) */
.messages-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Textarea styling */
.two-col textarea {
  width: 100%;
  height: 220px;
  min-height: 220px;
  padding: 12px;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #00ffc61c;
  background: rgba(0, 255, 198, 0.05);
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
  resize: vertical;
  font-size: 13px;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}

/* Label/header untuk textarea */
.textarea-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  min-height: 32px;
  gap: 8px;
}

.numbers-label {
  font-size: 13px;
  font-weight: 600;
  color: #eafff5;
}

.num-count {
  font-size: 13px;
  font-weight: 700;
  color: #00ffc6;
}

/* WA Filter Button */
.btn-filter-wa {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.btn-filter-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Filter Modal */
.filter-modal-content {
  max-width: 500px;
  width: 90%;
  height: auto !important;
  min-height: auto !important;
  max-height: 90vh;
  background: rgba(7, 13, 18, 0.98);
  border: 1px solid #00ffc61c;
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.3);
}

.filter-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #eafff5;
  font-weight: 500;
  font-size: 12px;
}

#filterInput {
  width: 100%;
  height: 80px;
  background: rgba(0, 255, 198, 0.05);
  border: 1px solid #00ffc61c;
  border-radius: 8px;
  color: white;
  padding: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  resize: none;
  margin-bottom: 8px;
}

.filter-results {
  margin-bottom: 8px;
}

.filter-result-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-result-box h4 {
  margin: 0;
  font-size: 12px;
  color: #eafff5;
}

.filter-result-box.valid h4 {
  color: #eafff5;
}

.filter-result-box textarea {
  width: 100%;
  height: 100px;
  background: rgba(0, 255, 198, 0.05);
  border: 1px solid #00ffc61c;
  border-radius: 8px;
  color: white;
  padding: 8px;
  font-family: monospace;
  font-size: 11px;
  resize: none;
}

.filter-result-box.valid textarea {
  border-color: #00ffc61c;
}

/* Filter modal body - compact no scroll */
.filter-modal-body {
  padding: 12px 15px !important;
  overflow: visible !important;
  max-height: none !important;
}

.btn.save-txt {
  background: #1a2a35;
  color: #eafff5;
  font-size: 12px;
  padding: 7px 14px;
  border: 1px solid #00ffc61c;
}

.btn.save-txt:hover {
  background: #243845;
}

.filter-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.filter-actions .btn {
  padding: 7px 16px;
  font-size: 12px;
  box-shadow: none !important;
}

.filter-actions .btn.scan {
  background: #1a2a35;
  color: #eafff5;
  border: 1px solid #00ffc61c;
  box-shadow: none !important;
}

.filter-actions .btn.scan:hover {
  background: #243845;
}

.filter-actions .btn.blast-all {
  background: #1a2a35;
  color: #eafff5;
  border: 1px solid #00ffc61c;
  box-shadow: none !important;
}

.filter-actions .btn.blast-all:hover {
  background: #243845;
}

/* MESSAGE TABS CONTAINER */
.message-tabs-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  min-height: 32px;
  gap: 10px;
}

.message-tabs-label {
  font-size: 13px;
  font-weight: 600;
  color: #eafff5;
  white-space: nowrap;
}

/* Tabs styling */
.message-tabs {
  display: flex;
  gap: 6px;
  align-items: center;
}

.m-tab {
  padding: 6px 12px;
  border-radius: 8px;
  background: #0b151a;
  border: 1px solid #00ffc61c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
  color: white;
  min-width: 36px;
  text-align: center;
}

.m-tab.active {
  background: white;
  color: black;
  font-weight: 700;
  border-color: white;
}

/* MESSAGE CONTROLS */
.msg-controls {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}

.msg-controls .btn {
  padding: 6px 10px;
  min-width: 36px;
  font-size: 14px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Style untuk progress info */
.progress-label {
  font-weight: 700;
  color: #00ffc6;
}

.progress-success {
  color: #4CAF50;
  font-weight: 600;
}

.progress-failed {
  color: #FF5252;
  font-weight: 600;
}

.progress-total {
  color: #2196F3;
  font-weight: 600;
}

.progress-percent {
  color: #FF9800;
  font-weight: 700;
}

/* BLAST BUTTON ROW - DIKECILKAN */
.blast-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  height: 45px;
}

/* RESULT */
.result-wrapper {
  max-height: 350px;
  overflow-y: auto;
  margin-top: 13px;
  border-radius: 10px;
  border: 1px solid #00ffc61c;
  background: rgba(5, 12, 16, 0.8);
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.result-table th {
  padding: 10px 12px;
  color: white;
  background: rgba(0, 255, 198, 0.07);
  border-bottom: 1px solid #00ffc61c;
  text-align: left;
  font-weight: 600;
}

.result-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #0f1a22;
  color: #eafff6;
  text-align: left;
  font-size: 12px;
}

.result-table td.success {
  color: #4CAF50;
  font-weight: 700;
}

.result-table td.failed {
  color: #FF5252;
  font-weight: 700;
}

.result-table td.info {
  color: #FF9800;
  font-weight: 700;
  font-style: italic;
}

.result-table td:nth-child(4) {
  max-width: 230px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

/* RESULT ACTIONS */
.result-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

/* GLOBAL SECTION */
.global-section {
  margin-top: 20px;
  background: rgba(7, 13, 18, 0.88);
  border: 1px solid #00ffc61c;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
}

.global-section h3 {
  color: #00ffc6;
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

/* SCROLLBAR GLOBAL */
.result-wrapper::-webkit-scrollbar,
.two-col textarea::-webkit-scrollbar {
  width: 7px;
}

.result-wrapper::-webkit-scrollbar-thumb,
.two-col textarea::-webkit-scrollbar-thumb {
  background: linear-gradient(#00ffc6, #009dff);
  border-radius: 10px;
}

/* FLOATING QR POPUP */
#qrPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#qrPopupBox {
  background: #020508;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 0 30px #00ffED;
  text-align: center;
  border: 2px solid #00ffc6;
}

#qrPopupImg {
  width: 300px;
  height: 300px;
  border-radius: 14px;
  border: 2px solid #00ffc6;
}

#qrPopupText {
  color: #00ffc6;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 255, 198, 0.7);
}

/* BORDER STYLING */
textarea:focus,
input:focus {
  outline: none;
  border-color: #00ffc6 !important;
  box-shadow: 0 0 15px rgba(0, 255, 198, 0.5) !important;
}

/* PLACEHOLDER STYLING */
::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* TABLES SUCCESS/FAILED STATUS */
.result-table tr td:nth-child(3).success {
  color: #00ffc6;
  font-weight: 700;
}

.result-table tr td:nth-child(3).failed {
  color: #ff5252;
  font-weight: 700;
}

/* Tambahkan di style.css setelah .message-tabs-header */
.message-tabs-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* Tambahkan di style.css */

/* Style khusus untuk progress info di tabel */
.result-table tr[data-type="progress-info"] td {
  font-weight: 600 !important;
  padding: 10px 12px !important;
  border-bottom: 2px solid #FF9800 !important;
}

.result-table tr[data-type="progress-info"] td:nth-child(3) {
  color: #FF9800 !important;
  font-weight: 700 !important;
  font-style: italic;
}

/* Perbaikan untuk tombol blast all yang lebih kecil */
.btn.blast-all {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  height: 38px;
  min-width: 140px;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.blast-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 15px 0;
  height: auto;
  min-height: 45px;
}

/* Tambahkan di style.css */

/* PROGRESS SUMMARY STYLES */
.progress-summary {
  background: rgba(7, 13, 18, 0.95);
  border: 1px solid #00ffc61c;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
}

.progress-summary h4 {
  color: #00ffc6;
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  text-shadow: 0 0 5px rgba(0, 255, 198, 0.3);
}

.account-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin: 5px 0;
  background: rgba(0, 255, 198, 0.05);
  border-radius: 8px;
  border-left: 4px solid #00ffc6;
  transition: all 0.3s ease;
}

.account-progress:hover {
  background: rgba(0, 255, 198, 0.1);
  transform: translateX(5px);
}

.account-progress span:first-child {
  font-weight: bold;
  color: #eafff5;
  min-width: 60px;
}

.account-progress span:last-child {
  font-size: 12px;
  color: #eafff5;
  text-align: right;
}

/* Perbaikan untuk tombol blast all yang lebih kecil */
.btn.blast-all {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  height: 38px;
  width: 160px;
  margin: 0 auto;
  display: block;
  transition: all 0.3s ease;
}

.btn.blast-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn.blast-all.stop {
  background: linear-gradient(135deg, #434343, #000000);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.blast-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 8px 0;
  height: auto;
}

/* Modern Futuristic Blast All Button */
.btn.blast-all {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5),
    0 0 30px rgba(139, 92, 246, 0.2);
  height: 42px;
  width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.btn.blast-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn.blast-all:hover::before {
  left: 100%;
}

.btn.blast-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6),
    0 0 50px rgba(139, 92, 246, 0.3);
}

.btn.blast-all.stop {
  background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
}

/* Delay Row Styling */
.delay-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 8px auto 15px auto;
  padding: 10px 20px;
  background: rgba(0, 255, 198, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 198, 0.1);
  width: fit-content;
}

.delay-label {
  color: #00ffc6;
  font-size: 12px;
  font-weight: 600;
}

.delay-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.delay-input {
  width: 60px;
  height: 32px;
  background: rgba(0, 255, 198, 0.1);
  border: 1px solid rgba(0, 255, 198, 0.3);
  border-radius: 6px;
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.delay-input:focus {
  outline: none;
  border-color: #00ffc6;
  box-shadow: 0 0 15px rgba(0, 255, 198, 0.4);
}

.delay-input::-webkit-outer-spin-button,
.delay-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.delay-separator {
  color: #00ffc6;
  font-size: 16px;
  font-weight: bold;
}

.delay-unit {
  color: #eafff5;
  font-size: 12px;
  opacity: 0.8;
}

/* CSV Button */
.btn.csv {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn.csv:hover {
  background: linear-gradient(135deg, #42A5F5, #2196F3);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

/* GLOBAL RESULT STYLES */
.result-wrapper {
  max-height: 350px;
  overflow-y: auto;
  border-radius: 10px;
  border: 1px solid #00ffc61c;
  background: rgba(5, 12, 16, 0.8);
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
  margin-top: 0;
}

/* Tambahkan di style.css */

/* Progress Summary Styles untuk Capture */
.progress-summary-capture {
  background: rgba(7, 13, 18, 0.95);
  border: 2px solid #00ffc6;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  width: 90%;
  max-width: 800px;
}

.progress-summary-capture h3 {
  color: #00ffc6;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.account-progress-capture {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  margin: 10px 0;
  background: rgba(0, 255, 198, 0.05);
  border-radius: 8px;
  border-left: 4px solid #00ffc6;
}

/* Tombol View Results */
.btn[style*="background: #9C27B0"] {
  background: linear-gradient(135deg, #9C27B0, #7B1FA2) !important;
  color: white;
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
}

.btn[style*="background: #9C27B0"]:hover {
  background: linear-gradient(135deg, #AB47BC, #8E24AA) !important;
}

/* Tambahkan di style.css */

/* Progress Summary Styles - Tanpa ACC1 */
.progress-summary-simple {
  background: rgba(7, 13, 18, 0.95);
  border: 2px solid #00ffc6;
  border-radius: 12px;
  padding: 25px;
  margin: 20px auto;
  width: 90%;
  max-width: 800px;
  text-align: center;
}

.progress-summary-simple h3 {
  color: #00ffc6;
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: bold;
}

/* Stats Boxes */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 20px 30px;
  border-radius: 12px;
  min-width: 140px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-box.success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
  border: 2px solid #4CAF50;
}

.stat-box.failed {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.15), rgba(244, 67, 54, 0.05));
  border: 2px solid #F44336;
}

.stat-box.total {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(33, 150, 243, 0.05));
  border: 2px solid #2196F3;
}

.stat-box .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.stat-box .count {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-box.success .count {
  color: #4CAF50;
}

.stat-box.failed .count {
  color: #F44336;
}

.stat-box.total .count {
  color: #2196F3;
}

.stat-box .label {
  font-size: 14px;
  color: #eafff5;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Progress Bar */
.progress-bar-large {
  width: 80%;
  height: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffc6, #00e2ff);
  border-radius: 12px;
  transition: width 0.8s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.progress-bar-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Status Text */
.status-text-large {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
}

.status-complete {
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid #4CAF50;
}

.status-processing {
  color: #FF9800;
  background: rgba(255, 152, 0, 0.1);
  border: 2px solid #FF9800;
}

/* ============ PROGRESS SUMMARY SECTION ============ */
.progress-summary-section {
  margin-top: 20px;
  background: rgba(7, 13, 18, 0.88);
  border: 1px solid #00ffc61c;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
}

.progress-summary-section h3 {
  color: #00ffc6;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-summary-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.progress-summary-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.account-progress-item {
  flex: 1;
  max-width: 520px;
  min-width: 280px;
  background: rgba(0, 255, 198, 0.05);
  border: 1px solid #00ffc61c;
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
}

.account-progress-item:hover {
  background: rgba(0, 255, 198, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 198, 0.1);
}

.progress-account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-account-name {
  font-weight: 700;
  color: #00ffc6;
  font-size: 16px;
}

.progress-account-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.status-connected {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}

.status-disconnected {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 1px solid #F44336;
}

.status-waiting {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
  border: 1px solid #FF9800;
}

.status-banned {
  background: rgba(156, 39, 176, 0.2);
  color: #9C27B0;
  border: 1px solid #9C27B0;
}

.progress-account-bar-container {
  height: 10px;
  background: #050c11;
  border-radius: 5px;
  margin: 12px 0;
  overflow: hidden;
}

.progress-account-bar {
  height: 100%;
  background: linear-gradient(90deg, #00ffc6, #00e2ff);
  border-radius: 5px;
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.progress-account-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.progress-account-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
  margin-top: 10px;
}

.progress-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
}

.progress-stat-label {
  font-size: 10px;
  color: rgba(234, 255, 245, 0.7);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-stat-value {
  font-size: 14px;
  font-weight: 700;
}

.progress-stat-success {
  color: #4CAF50;
}

.progress-stat-failed {
  color: #FF5252;
}

.progress-stat-total {
  color: #2196F3;
}

.progress-stat-percent {
  color: #FF9800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .progress-summary-row {
    flex-direction: column;
    align-items: center;
  }

  .account-progress-item {
    max-width: 100%;
    width: 100%;
  }
}

/* Hide progress bar in account cards */
.account-card .progress-wrapper,
.account-card .progress-text {
  display: none !important;
}

/* Tambahkan di akhir file style.css */

/* QR Popup Reload Button Styles */
#qrPopupControls {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

#qrPopupControls .btn {
  padding: 8px 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
  min-width: 120px;
}

#qrPopupControls .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Notification Animation */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ============ INLINE QR SECTION ============ */
.qr-inline-section {
  background: rgba(7, 13, 18, 0.95);
  border: 1px solid #00ffc61c;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qr-inline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #00ffc61c;
}

.qr-inline-header h3 {
  color: #00ffc6;
  margin: 0;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(0, 255, 198, 0.5);
}

.qr-timer {
  color: #FF9800;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 152, 0, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.qr-inline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}

.qr-inline-img {
  width: 280px;
  height: 280px;
  border-radius: 16px;
  border: 2px solid rgba(0, 255, 198, 0.5);
  box-shadow: 0 0 20px rgba(0, 100, 255, 0.4);
  background: white;
  display: none;
}

.qr-inline-text {
  color: #00ffc6;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 255, 198, 0.5);
}

/* ============ RESPONSIVE DESIGN ============ */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .wrapper {
    max-width: 1080px;
  }
}

/* Desktop/Laptop (992px - 1199px) */
@media (max-width: 1199px) {
  .wrapper {
    max-width: 960px;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
  .wrapper {
    max-width: 720px;
    width: 95%;
  }

  .title {
    font-size: 26px;
  }

  .two-col {
    flex-direction: column;
    gap: 12px;
  }

  .two-col textarea {
    height: 180px;
    min-height: 180px;
  }

  .progress-summary-row {
    flex-direction: column;
    align-items: center;
  }

  .account-progress-item {
    max-width: 100%;
    width: 100%;
  }

  .result-table td:nth-child(5) {
    max-width: 150px;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .wrapper {
    width: 98%;
    padding: 0 8px;
    margin: 10px auto;
  }

  .title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .tabs {
    gap: 5px;
  }

  .tab {
    padding: 5px 10px;
    font-size: 12px;
  }

  .top-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .btn {
    padding: 7px 12px;
    font-size: 12px;
    height: 36px;
  }

  .account-card {
    padding: 15px;
  }

  .two-col textarea {
    height: 150px;
    min-height: 150px;
    font-size: 12px;
  }

  .message-tabs-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .progress-summary-section,
  .global-section {
    padding: 15px;
  }

  .progress-summary-section h3,
  .global-section h3 {
    font-size: 16px;
  }

  .progress-account-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .result-table {
    font-size: 11px;
  }

  .result-table th,
  .result-table td {
    padding: 6px 8px;
  }

  /* Hide message column on tablet */
  .result-table th:nth-child(5),
  .result-table td:nth-child(5) {
    display: none;
  }

  .result-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .qr-inline-img {
    width: 220px;
    height: 220px;
  }
}

/* Mobile (max-width: 575px) */
@media (max-width: 575px) {
  .wrapper {
    width: 100%;
    padding: 0 5px;
    margin: 5px auto;
  }

  .title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .tabs {
    justify-content: center;
    gap: 4px;
  }

  .tab {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 6px;
  }

  .top-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .top-actions .btn {
    width: 100%;
  }

  .btn {
    padding: 8px 10px;
    font-size: 11px;
    height: 34px;
  }

  .btn.blast-all {
    width: 100%;
    max-width: 100%;
  }

  .account-card {
    padding: 12px;
    border-radius: 12px;
  }

  .status-line {
    font-size: 12px;
  }

  .two-col {
    gap: 10px;
  }

  .two-col textarea {
    height: 120px;
    min-height: 120px;
    font-size: 11px;
    padding: 10px;
  }

  .textarea-header,
  .message-tabs-header {
    min-height: 28px;
  }

  .numbers-label,
  .message-tabs-label {
    font-size: 11px;
  }

  .message-tabs {
    gap: 4px;
  }

  .m-tab {
    padding: 4px 8px;
    font-size: 10px;
    min-width: 28px;
  }

  .msg-controls .btn {
    padding: 4px 8px;
    min-width: 28px;
    height: 26px;
    font-size: 12px;
  }

  .blast-row {
    margin: 8px 0 12px 0;
  }

  .progress-summary-section,
  .global-section {
    padding: 12px;
    border-radius: 12px;
    margin-top: 15px;
  }

  .progress-summary-section h3,
  .global-section h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .account-progress-item {
    padding: 12px;
  }

  .progress-account-name {
    font-size: 14px;
  }

  .progress-account-status {
    font-size: 10px;
    padding: 3px 8px;
  }

  .progress-account-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .progress-stat-label {
    font-size: 8px;
  }

  .progress-stat-value {
    font-size: 12px;
  }

  .result-wrapper {
    max-height: 250px;
  }

  .result-table {
    font-size: 10px;
  }

  .result-table th,
  .result-table td {
    padding: 5px 6px;
  }

  /* Hide time and message columns on mobile */
  .result-table th:nth-child(4),
  .result-table td:nth-child(4),
  .result-table th:nth-child(5),
  .result-table td:nth-child(5) {
    display: none;
  }

  .result-actions {
    flex-direction: column;
    gap: 6px;
  }

  .result-actions .btn {
    width: 100%;
  }

  .qr-inline-section {
    padding: 15px;
  }

  .qr-inline-header h3 {
    font-size: 14px;
  }

  .qr-timer {
    font-size: 11px;
    padding: 4px 10px;
  }

  .qr-inline-img {
    width: 200px;
    height: 200px;
  }

  .qr-inline-text {
    font-size: 14px;
  }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
  .title {
    font-size: 16px;
  }

  .tab {
    padding: 3px 6px;
    font-size: 10px;
  }

  .two-col textarea {
    height: 100px;
    min-height: 100px;
  }

  .progress-account-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .qr-inline-img {
    width: 180px;
    height: 180px;
  }
}