/* Hex-Key Website - Dashboard Table Stylesheet */

/* Dashboard Table Styles */
.dashboard-table-container {
  margin: 30px 0;
  padding: 0px;
}

.dashboard-title {
  color: var(--accent-color);
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.dashboard-table {
  width: 100%;
  overflow-x: auto;
}

.dashboard-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background-color: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.dashboard-table th {
  background-color: rgba(22, 22, 22, 0.9);
  color: var(--accent-color);
  font-weight: 600;
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
}

.dashboard-table td {
  padding: 10px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(82, 82, 82, 0.3);
  color: #ffffff;
}

.dashboard-table tr:last-child td {
  border-bottom: none;
}

.dashboard-table tr:hover {
  background-color: rgba(30, 30, 30, 0.9);
}

/* Mobile Dashboard Table */
.mobile-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .dashboard-title.mobile-font-md {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .dashboard-table.mobile table {
    min-width: 100%;
  }
  
  .dashboard-table.mobile th {
    font-size: 13px;
    padding: 8px 10px;
    white-space: nowrap;
  }
  
  .dashboard-table.mobile td {
    font-size: 14px;
    padding: 8px 10px;
    white-space: nowrap;
  }
}
