.gaming-input2 {
    width: 100%;
    padding: 12px 15px;
    background: #121212;
    border: 2px solid transparent;
    border-radius: 12px;
    background-image: linear-gradient(#121212, #121212),
                      linear-gradient(90deg, #8c420a, #00e1ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #fff;
    font-size: 18px;
    outline: none;
    font-family: 'Rajdhani', sans-serif;
    transition: .3s;
}

.gaming-input2:focus {
    box-shadow: 0 0 10px #ff0077, 0 0 20px #00e1ff;
}

.table-container {
  width: 100%;
  max-width: 500px; /* Change if needed */
  margin: 0 auto;
}

.nice-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Makes columns equal width */
  font-family: Arial, sans-serif;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nice-table th,
.nice-table td {
  width: 50%;               /* Force equal column width */
  padding: 12px;
  text-align: left;
}

.nice-table th {
  background: #4a68ff;
  color: #fff;
  font-size: 15px;
}

.nice-table td {
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.nice-table tr:hover td {
  background: #f7f9ff;
  transition: 0.3s;
}
