/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
  color: #e2e8f0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Topbar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid #334155;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
}

.time-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.time-display {
  font-size: 18px;
  font-weight: 600;
  color: #f8fafc;
  letter-spacing: 1px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.menu-toggle {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid #475569;
  border-radius: 8px;
  padding: 8px 12px;
  color: #e2e8f0;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}

.menu-toggle:hover {
  background: rgba(30, 41, 59, 0.9);
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: -250px;
  top: 0;
  width: 250px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  padding: 70px 0 20px;
  transition: all 0.3s ease;
  border-right: 1px solid #334155;
  backdrop-filter: blur(10px);
  z-index: 90;
  overflow-y: auto;
}

.sidebar.show {
  left: 0;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
}

.sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid #334155;
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.sidebar-subtitle {
  font-size: 13px;
  color: #94a3b8;
}

.nav-menu {
  list-style: none;
  padding: 0 15px;
}

.nav-item {
  margin-bottom: 5px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(148, 163, 184, 0.1);
  color: #f8fafc;
}

.nav-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.content {
  padding: 20px;
  margin-left: 0;
  transition: margin-left 0.3s;
}

.content.sidebar-open {
  margin-left: 250px;
}

/* Pages */
.page {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page.active {
  display: block;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #334155;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 400;
}

/* Forms */
.form-container {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #334155;
  margin-bottom: 20px;
}

.info-card {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #3b82f6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 14px;
}

.form-input, .form-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.7);
  color: #f1f5f9;
  border: 1px solid #475569;
  font-size: 15px;
  transition: all 0.3s;
}

textarea.form-input {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  resize: vertical;
  min-height: 120px;
}

.form-input:focus, .form-select:focus, textarea.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(30, 41, 59, 0.9);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.current-price {
  font-size: 20px;
  color: #10b981;
  font-weight: 600;
  padding: 10px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Checkbox Styling */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #3b82f6;
  cursor: pointer;
}

.checkbox-group label {
  color: #cbd5e1;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

/* Manual Input Specific Styles */
.manual-warning {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.manual-warning .card-header {
  color: #f59e0b;
}

/* Buttons */
.btn {
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: rgba(71, 85, 105, 0.7);
  color: #e2e8f0;
  border: 1px solid #475569;
}

.btn-secondary:hover {
  background: rgba(71, 85, 105, 0.9);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.btn-group.stacked {
  flex-direction: column;
}

.btn-group.stacked .btn {
  width: 100%;
}

/* Action Buttons in Detail Modal */
.slot-detail .btn-primary {
  padding: 8px 12px;
  font-size: 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.slot-detail .btn-secondary {
  padding: 8px 12px;
  font-size: 12px;
}

/* Cards */
.card {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #334155;
  margin-bottom: 20px;
}

.card-header {
  font-weight: 600;
  font-size: 18px;
  color: #f8fafc;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #334155;
}

/* Summary Cards */
.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.summary-card {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.summary-card:hover {
  border-color: #475569;
  transform: translateY(-3px);
}

.summary-value {
  font-size: 32px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 5px;
}

.summary-label {
  color: #94a3b8;
  font-size: 14px;
}

/* Lists */
.data-list {
  list-style: none;
  padding: 0;
}

.data-list li {
  background: rgba(30, 41, 59, 0.5);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #475569;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.data-list li:hover {
  background: rgba(30, 41, 59, 0.7);
}

.data-list li button {
  padding: 8px 14px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.data-list li button:hover {
  background: #dc2626;
  transform: scale(1.05);
}

/* Result Items for Multi Numbers */
.result-item {
  background: rgba(30, 41, 59, 0.3);
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 8px;
  border-left: 4px solid;
  transition: all 0.2s;
}

.result-item.success {
  border-left-color: #10b981;
}

.result-item.failed {
  border-left-color: #ef4444;
}

.result-item:hover {
  background: rgba(30, 41, 59, 0.5);
}

.result-list {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 10px;
  border-radius: 6px;
  padding: 10px;
  background: rgba(30, 41, 59, 0.2);
}

/* Mode Indicator */
.mode-indicator {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

.mode-api {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.mode-manual {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

/* Progress Bar */
.progress-container {
  margin-top: 15px;
}

.progress-bar {
  height: 8px;
  background: #334155;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 5px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 4px;
  transition: width 0.3s ease-in-out;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 5px;
}

/* Batch Progress */
#multiProgress .progress-bar {
  margin-bottom: 0;
  height: 10px;
}

#multiProgress .progress-fill {
  background: linear-gradient(90deg, #10b981, #34d399);
}

/* ===== TABLE STYLES ===== */
.data-table-container {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #334155;
  margin-bottom: 20px;
  background: rgba(15, 23, 42, 0.5);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 800px;
}

/* Table Header dengan Sorting */
.data-table th {
  background: rgba(30, 41, 59, 0.95);
  padding: 14px 12px;
  text-align: left;
  font-weight: 600;
  color: #f1f5f9;
  border-bottom: 2px solid #475569;
  position: sticky;
  top: 0;
  z-index: 10;
  user-select: none;
}

.sortable-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.sortable-header:hover {
  color: #3b82f6;
}

.sort-icon {
  font-size: 12px;
  color: #94a3b8;
  transition: all 0.2s;
  display: inline-block;
  width: 16px;
  text-align: center;
}

.sortable-header:hover .sort-icon {
  color: #3b82f6;
}

/* Sorting States */
.sort-asc .sort-icon {
  color: #3b82f6;
  content: "↑";
}

.sort-desc .sort-icon {
  color: #3b82f6;
  content: "↓";
}

/* Table Body */
.data-table td {
  padding: 12px 12px;
  border-bottom: 1px solid #475569;
  color: #cbd5e1;
  vertical-align: middle;
}

/* Zebra striping */
.data-table tbody tr:nth-child(even) {
  background: rgba(30, 41, 59, 0.2);
}

.data-table tbody tr:hover {
  background: rgba(30, 41, 59, 0.4);
}

/* Column Widths (tanpa kolom Biaya) */
.data-table th:nth-child(1),
.data-table td:nth-child(1) {
  width: 60px;
  text-align: center;
  min-width: 60px;
}

.data-table th:nth-child(2),
.data-table td:nth-child(2) {
  width: 180px;
  min-width: 180px;
}

.data-table th:nth-child(3),
.data-table td:nth-child(3) {
  width: 180px;
  min-width: 180px;
}

.data-table th:nth-child(4),
.data-table td:nth-child(4) {
  width: 130px;
  min-width: 130px;
  text-align: center;
}

.data-table th:nth-child(5),
.data-table td:nth-child(5) {
  width: 110px;
  min-width: 110px;
  text-align: center;
}

.data-table th:nth-child(6),
.data-table td:nth-child(6) {
  width: 100px;
  min-width: 100px;
  text-align: center;
}

/* MSISDN Link */
.msisdn-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.msisdn-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* Badge untuk Sisa Hari */
.hari-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

.hari-hijau {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.hari-kuning {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hari-merah {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.hari-abu {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

/* Button Detail */
.btn-detail {
  padding: 8px 16px;
  background: rgba(30, 41, 59, 0.7);
  color: #cbd5e1;
  border: 1px solid #475569;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 80px;
}

.btn-detail:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: #3b82f6;
  color: #f1f5f9;
  transform: translateY(-1px);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

/* Price List */
.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.price-item {
  background: rgba(30, 41, 59, 0.5);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #475569;
  transition: all 0.2s;
}

.price-item:hover {
  background: rgba(30, 41, 59, 0.7);
  transform: translateY(-2px);
}

.price-type {
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 8px;
  font-size: 15px;
}

.price-value {
  color: #10b981;
  font-weight: 600;
  font-size: 18px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background: #0f172a;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 12px;
  border: 1px solid #334155;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #0f172a;
  z-index: 10;
}

.modal-header h3 {
  margin: 0;
  color: #f1f5f9;
  font-size: 20px;
}

.modal-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.modal-body {
  padding: 20px;
}

/* Slot Detail */
.slot-detail {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #3b82f6;
}

.slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.slot-title {
  font-weight: 600;
  color: #f1f5f9;
  font-size: 16px;
}

.slot-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.grid-item {
  display: flex;
  flex-direction: column;
}

.grid-label {
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 4px;
}

.grid-value {
  color: #f1f5f9;
  font-weight: 500;
}

/* Loading */
.loading-spinner {
  border: 3px solid rgba(59, 130, 246, 0.3);
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-muted {
  color: #94a3b8 !important;
}

.text-success {
  color: #10b981 !important;
}

.text-warning {
  color: #f59e0b !important;
}

.text-danger {
  color: #ef4444 !important;
}

.text-info {
  color: #3b82f6 !important;
}

.text-center {
  text-align: center !important;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.gap-10 {
  gap: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

/* Quick Quota Buttons */
.quick-quota-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.quick-quota-btn {
  padding: 8px;
  font-size: 12px;
  background: rgba(71, 85, 105, 0.7);
  color: #e2e8f0;
  border: 1px solid #475569;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-quota-btn:hover {
  background: rgba(71, 85, 105, 0.9);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
  .sidebar {
    width: 280px;
  }
  
  .content.sidebar-open {
    margin-left: 0;
  }
  
  .data-table th:nth-child(3),
  .data-table td:nth-child(3) {
    width: 160px;
    min-width: 160px;
  }
  
  .modal-content {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 10px 15px;
    height: 56px;
  }
  
  .time-display {
    font-size: 16px;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .btn-group:not(.stacked) {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .summary-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-title {
    font-size: 24px;
  }
  
  .page-subtitle {
    font-size: 14px;
  }
  
  .modal {
    padding: 10px;
  }
  
  .modal-content {
    margin: 10px;
    width: calc(100% - 20px);
  }
  
  .slot-grid {
    grid-template-columns: 1fr;
  }
  
  /* Hide "Ditambah Pada" on mobile */
  .data-table th:nth-child(3),
  .data-table td:nth-child(3) {
    display: none;
  }
  
  /* Adjust column widths for mobile */
  .data-table th:nth-child(2),
  .data-table td:nth-child(2) {
    width: 140px;
    min-width: 140px;
  }
  
  .hari-badge {
    padding: 4px 8px;
    font-size: 11px;
    min-width: 70px;
  }
  
  .btn-detail {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 70px;
  }
  
  .result-item {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .mode-indicator {
    font-size: 10px;
    padding: 1px 6px;
  }
  
  .slot-detail .btn-primary,
  .slot-detail .btn-secondary {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .quick-quota-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .summary-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .summary-card {
    padding: 15px 10px;
  }
  
  .summary-value {
    font-size: 24px;
  }
  
  .summary-label {
    font-size: 12px;
  }
  
  .price-list {
    grid-template-columns: 1fr;
  }
  
  .data-table-container {
    font-size: 13px;
  }
  
  .data-table th,
  .data-table td {
    padding: 10px 8px;
  }
  
  .btn-group {
    gap: 8px;
  }
  
  .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .form-container {
    padding: 20px 15px;
  }
  
  .info-card {
    padding: 15px;
  }
  
  .modal-header h3 {
    font-size: 18px;
  }
  
  .slot-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .slot-badge {
    align-self: flex-start;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 41, 59, 0.3);
}

::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* Number Count Badge */
.number-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: 12px;
  color: #3b82f6;
  font-weight: 500;
  margin-left: 8px;
}

/* Info Text Styling */
.info-text {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 5px;
  line-height: 1.4;
}

.info-text strong {
  color: #cbd5e1;
}

/* Form Help Text */
.form-help {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #94a3b8;
}

/* Multi Number Text Counter */
.textarea-counter {
  text-align: right;
  font-size: 12px;
  color: #64748b;
  margin-top: 5px;
}

.textarea-counter.warning {
  color: #f59e0b;
}

.textarea-counter.danger {
  color: #ef4444;
}

/* Warning Box for Kick Modal */
.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.warning-box strong {
  color: #ef4444;
}

/* Success Box for Result Modal */
.success-box {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

/* Aksi Button Styles in Slot Detail */
.slot-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.slot-actions .btn {
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

/* Modal Backdrop */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
}
