/* style-devices.css - Devices page, table, stats, controls, responsive */
/* Devices Page Styles */
.devices-page {
  padding: 10px;
  min-height: 100%;
}

/* Page Header */
.devices-page .page-header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.devices-page .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.devices-page .header-title h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.devices-page .header-title h1 i {
  color: #3498db;
  font-size: 1.4rem;
}

.devices-page .subtitle {
  color: #bdc3c7;
  margin: 0;
  font-size: 0.85rem;
}

.devices-page .header-actions {
  display: flex;
  gap: 8px;
}

/* Statistics Cards - Devices */
.devices-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.devices-stats::-webkit-scrollbar {
  display: none;
}

.devices-stats .stats-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 140px;
  color: #ecf0f1;
}

.devices-stats .stats-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.devices-stats .stats-card.online .stats-icon {
  background: linear-gradient(135deg, #48bb78, #38a169);
}

.devices-stats .stats-card.offline .stats-icon {
  background: linear-gradient(135deg, #f56565, #e53e3e);
}

.devices-stats .stats-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.devices-stats .stats-content {
  flex: 1;
  min-width: 0;
}

.devices-stats .stats-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 2px;
}

.devices-stats .stats-label {
  color: #bdc3c7;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Controls Section */
.devices-controls {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.devices-controls .filter-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.devices-controls .filter-group,
.devices-controls .search-group,
.devices-controls .sort-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.devices-controls .filter-label {
  font-weight: 600;
  color: #ecf0f1;
  font-size: 0.9rem;
  white-space: nowrap;
}

.devices-controls .filter-buttons {
  display: flex;
  gap: 8px;
}

.devices-controls .filter-btn {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: #ecf0f1;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.devices-controls .filter-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.devices-controls .filter-btn.active {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.devices-controls .search-input {
  position: relative;
  width: 300px;
}

.devices-controls .search-input i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
}

.devices-controls .search-input input {
  width: 100%;
  padding: 10px 12px 10px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: all 0.2s ease;
}

.devices-controls .search-input input:focus {
  outline: none;
  border-color: #3498db;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

.devices-controls .form-select {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: #ecf0f1;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.devices-controls .form-select:focus {
  outline: none;
  border-color: #3498db;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

/* Devices Content */
.devices-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.devices-table-container {
  position: relative;
}

.table-wrapper {
  overflow-x: auto;
  max-height: 70vh;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.table-wrapper::-webkit-scrollbar {
  display: none;
}

.devices-table-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.devices-table-container::-webkit-scrollbar {
  display: none;
}

/* Devices Table */
.devices-table {
  border-collapse: collapse;
  background: transparent;
  table-layout: fixed;
  color: #ecf0f1;
}

.devices-table thead th {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 600;
  padding: 15px 12px;
  text-align: left;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.devices-table tbody td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.devices-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Column width constraints for better layout */
.devices-table thead th:nth-child(1) { width: 18%; } /* Name */
.devices-table thead th:nth-child(2) { width: 12%; } /* IP */
.devices-table thead th:nth-child(3) { width: 15%; } /* Location */
.devices-table thead th:nth-child(4) { width: 10%; } /* Type */
.devices-table thead th:nth-child(5) { width: 10%; } /* Parent */
.devices-table thead th:nth-child(6) { width: 12%; } /* MAC */
.devices-table thead th:nth-child(7) { width: 10%; } /* Last Seen */
.devices-table thead th:nth-child(8) { width: 10%; } /* Status */
.devices-table thead th:nth-child(9) { width: 8%; } /* Actions */

/* Layout for read-only users (no action column) */
.devices-table.read-only thead th:nth-child(1) { width: 20%; }
.devices-table.read-only thead th:nth-child(2) { width: 13%; }
.devices-table.read-only thead th:nth-child(3) { width: 16%; }
.devices-table.read-only thead th:nth-child(4) { width: 11%; }
.devices-table.read-only thead th:nth-child(5) { width: 11%; }
.devices-table.read-only thead th:nth-child(6) { width: 13%; }
.devices-table.read-only thead th:nth-child(7) { width: 11%; }
.devices-table.read-only thead th:nth-child(8) { width: 11%; }

/* Hide action column for read-only users */
.devices-table.read-only thead th:nth-child(9),
.devices-table.read-only tbody td:nth-child(9) {
  display: none !important;
}

/* Add visual indicator for read-only mode */
.devices-table.read-only::before {
  content: "🔒 Mode Read-Only - Akses Terbatas";
  display: block;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px 4px 0 0;
  margin-bottom: -1px;
}

/* Read-only notices in page header */
.read-only-notice {
  background: rgba(243, 156, 18, 0.1);
  border: 1px solid rgba(243, 156, 18, 0.45);
  color: #f6c453;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-only-info {
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.4);
  color: #7dc4f5;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.devices-table tbody td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.devices-table thead {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  position: sticky;
  top: 0;
  z-index: 10;
}

.devices-table thead th {
  padding: 10px 8px;
  text-align: left;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.devices-table thead th.sortable {
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.devices-table thead th.sortable:hover {
  background: rgba(255, 255, 255, 0.06);
}

.devices-table thead th .sort-icon {
  margin-left: 8px;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.devices-table thead th.sort-asc .sort-icon,
.devices-table thead th.sort-desc .sort-icon {
  opacity: 1;
  color: #ffd700;
}

.devices-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}

.devices-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: scale(1.005);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.devices-table tbody td {
  padding: 8px 6px;
  vertical-align: middle;
  font-size: 0.75rem;
  color: #d7dee7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Device Info Styles */
.device-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-width: 100%;
}

.device-title {
  font-weight: 600;
  color: #f8fafc;
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-subtitle {
  font-size: 0.7rem;
  color: #94a3b8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.type-badge {
  display: inline-block;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe7f3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.status-badge.status-online {
  background: rgba(72, 187, 120, 0.1);
  color: #38a169;
  border: 1px solid rgba(72, 187, 120, 0.2);
}

.status-badge.status-offline {
  background: rgba(245, 101, 101, 0.1);
  color: #e53e3e;
  border: 1px solid rgba(245, 101, 101, 0.2);
}

.devices-table tbody td.device-actions {
  padding: 8px 4px;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
}

.devices-table tbody td.device-status {
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  padding: 8px 6px;
}

.action-buttons {
  display: flex;
  gap: 4px;
  white-space: nowrap;
  min-width: 110px;
  justify-content: center;
}

.btn-action {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.75rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
}

.btn-action:hover {
  transform: translateY(-1px);
}

.btn-edit {
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
}

.btn-edit:hover {
  background: #667eea;
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-view {
  background: rgba(56, 178, 172, 0.12);
  color: #38b2ac;
}

.btn-view:hover {
  background: #38b2ac;
  color: white;
  box-shadow: 0 4px 12px rgba(56, 178, 172, 0.3);
}

.btn-delete {
  background: rgba(245, 101, 101, 0.12);
  color: #f56565;
}

.btn-delete:hover {
  background: #f56565;
  color: white;
  box-shadow: 0 4px 12px rgba(245, 101, 101, 0.3);
}

.devices-page .header-actions .btn.btn-primary {
  background: rgba(255, 255, 255, 0.06);
  color: #ecf0f1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.devices-page .header-actions .btn.btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* Empty and Loading States */
.empty-state,
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: transparent;
  color: #bdc3c7;
}

.empty-state .empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3498db, #2980b9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 24px;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.empty-state p {
  color: #bdc3c7;
  margin: 0 0 24px 0;
  font-size: 1rem;
}

.loading-state .spinner {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 16px;
}

.loading-state p {
  color: #bdc3c7;
  margin: 0;
}

/* Legacy device styles (keeping for compatibility) */
.device-filter-form {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* Responsive Design for Devices */
@media (max-width: 1024px) {
  .devices-page {
    padding: 5px;
  }
  
  .devices-stats {
    gap: 12px;
  }
  
  .devices-stats .stats-card {
    min-width: 130px;
    padding: 14px 16px;
  }
  
  .devices-controls .filter-section {
    gap: 20px;
  }
  
  .devices-controls .search-input {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .devices-page .header-title h1 {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
  
  .devices-page .subtitle {
    font-size: 0.85rem;
  }
  
  .devices-page .header-actions .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .devices-stats {
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .devices-stats .stats-card {
    min-width: 110px;
    padding: 10px 12px;
  }
  
  .devices-stats .stats-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .devices-stats .stats-number {
    font-size: 1.5rem;
  }
  
  .devices-stats .stats-label {
    font-size: 0.7rem;
  }
  
  .devices-controls {
    padding: 15px;
  }
  
  .devices-controls .filter-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .devices-controls .search-input {
    width: 100%;
  }
  
  .table-wrapper {
    max-height: 60vh;
  }
  
  .devices-table thead th,
  .devices-table tbody td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }
  
  .device-title {
    font-size: 0.85rem;
  }
  
  .device-subtitle {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .devices-page {
    padding: 8px 4px;
  }
  
  .device-table th, .device-table td {
    padding: 6px 4px;
    font-size: 0.75rem;
  }
  
  .device-filter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 12px;
  }
  
  .devices-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px;
  }
  
  .devices-table {
    min-width: 700px;
  }
  
  .device-title {
    font-size: 0.75rem;
  }
  
  .device-subtitle {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .devices-page {
    padding: 2px;
  }
  
  .devices-page .page-header {
    padding: 5px 10px;
    margin-bottom: 8px;
  }
  
  .devices-page .header-title h1 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  
  .devices-page .subtitle {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  
  .devices-page .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .devices-stats {
    gap: 5px;
    margin-bottom: 8px;
  }
  
  .devices-stats .stats-card {
    min-width: 90px;
    padding: 8px 10px;
    gap: 6px;
  }
  
  .devices-stats .stats-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .devices-stats .stats-number {
    font-size: 1.1rem;
  }
  
  .devices-stats .stats-label {
    font-size: 0.6rem;
  }
  
  .devices-controls {
    padding: 5px 10px;
    margin-bottom: 8px;
  }
  
  .filter-section {
    flex-direction: column;
    gap: 12px;
  }
  
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .filter-buttons {
    gap: 6px;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .search-group {
    width: 100%;
  }
  
  .search-input {
    width: 100%;
  }
  
  .search-input input {
    font-size: 0.8rem;
    padding: 8px 12px 8px 32px;
  }
  
  .sort-group select {
    font-size: 0.8rem;
    padding: 6px 8px;
  }
  
  .action-buttons {
    gap: 2px;
    min-width: 80px;
    justify-content: center;
  }
  
  .btn-action {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
  
  .devices-table tbody td {
    padding: 4px 3px;
    font-size: 0.65rem;
    line-height: 1.3;
  }
  
  .devices-table thead th {
    padding: 6px 3px;
    font-size: 0.65rem;
    line-height: 1.2;
  }
  
  .device-title {
    font-size: 0.7rem;
  }
  
  .device-subtitle {
    font-size: 0.6rem;
  }
  
  .status-badge {
    padding: 2px 6px;
    font-size: 0.6rem;
    gap: 3px;
  }
  
  .type-badge {
    padding: 2px 4px;
    font-size: 0.6rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .devices-table-container {
    padding: 4px;
    margin: 0 -4px;
  }
  
  .devices-table {
    font-size: 0.65rem;
    border-radius: 6px;
  }
  
  .devices-table thead th:nth-child(5),
  .devices-table tbody td:nth-child(5),
  .devices-table thead th:nth-child(6),
  .devices-table tbody td:nth-child(6) {
    display: none; /* Hide Parent and MAC columns on very small screens */
  }
  
  .devices-table thead th:nth-child(1) { width: 25%; }
  .devices-table thead th:nth-child(2) { width: 15%; }
  .devices-table thead th:nth-child(3) { width: 18%; }
  .devices-table thead th:nth-child(4) { width: 12%; }
  .devices-table thead th:nth-child(7) { width: 12%; }
  .devices-table thead th:nth-child(8) { width: 12%; }
  .devices-table thead th:nth-child(9) { width: 6%; }
  
  /* Read-only layout for mobile */
  .devices-table.read-only thead th:nth-child(1) { width: 28%; }
  .devices-table.read-only thead th:nth-child(2) { width: 16%; }
  .devices-table.read-only thead th:nth-child(3) { width: 20%; }
  .devices-table.read-only thead th:nth-child(4) { width: 13%; }
  .devices-table.read-only thead th:nth-child(7) { width: 13%; }
  .devices-table.read-only thead th:nth-child(8) { width: 10%; }
  
  /* Hide action column for read-only users on mobile */
  .devices-table.read-only thead th:nth-child(9),
  .devices-table.read-only tbody td:nth-child(9) {
    display: none !important;
  }
  
  /* Adjust read-only indicator for mobile */
  .devices-table.read-only::before {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .devices-table tbody tr {
    border-bottom: 2px solid #f1f5f9;
  }
  
  .devices-table tbody tr:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Mobile card-style layout for device rows */
  .devices-table tbody td.device-name {
    position: relative;
  }
  
  .devices-table tbody td.device-status {
    text-align: center;
    padding: 4px 2px;
    overflow: visible;
  }
  
  .devices-table tbody td.device-actions {
    padding: 2px 1px;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
  }
  
  .status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
  }
  
  .action-buttons {
    gap: 1px;
    min-width: 65px;
    justify-content: center;
  }
  
  .action-buttons {
    gap: 1px;
    min-width: 75px;
  }
  
  .btn-action {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
  
  /* Empty state mobile styling */
  .empty-state {
    padding: 20px 16px;
    text-align: center;
  }
  
  .empty-state .empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  
  .empty-state h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .empty-state p {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  
  .empty-state .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  /* Loading state mobile styling */
  .loading-state {
    padding: 20px 16px;
    text-align: center;
  }
  
  .loading-state .spinner {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .loading-state p {
    font-size: 0.8rem;
  }
}
/* removed monospace for lat/lng as these columns were hidden */
