/* Header bar */
.header-bar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Nav layout */
.nav-container {
  
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
 
}

/* Stylish button appearance */
.nav-button {
display: inline-flex;
  align-items: center;
padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  background-color: #FBC503;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(118, 75, 162, 0.25);
}

.nav-button:hover {
  background: linear-gradient(135deg, #556cd6, #6b44c1);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.35);
}

.nav-button.active {
  background: #FBC503;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.nav-button i {
  margin-right: 8px;
}

.greet {
  background: #34c38f;
  color: #fff;
}
.live-name {
  color: #fff;
  text-shadow: 1px 1px 10px red;
  font: italic small-caps bold 30px Georgia,Garamond,serif;
}
.superfast {
  color: #FBC503;
  text-shadow: -1px 0 red,0 1px black,1px 0 black,0 -1px #000;
  text-align: center;
}
.date-time {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 48px;
      background: linear-gradient(90deg, #ff0000, #ffaa00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 2px 2px 8px rgba(255, 0, 0, 0.6);
      letter-spacing: 2px;
      text-transform: uppercase;
      text-align: center;
      font-weight: 700;
    }
    
    .parent {
  flex-wrap: wrap;
  text-align: center;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Helvetica, sans-serif;
  margin: 0 auto;
  display: flex;
}
.parent a, .parent p {
  background: #28a745;
  color: #fff;
  flex: auto;
  padding: 12px;
  margin: 1px;
  box-shadow: inset 0 0 7px 0 rgba(0, 0, 0, .7);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-weight: bold;
}


.table-container {
  overflow-x: auto;
  max-width: 100%;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

#game-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

#game-table thead tr:first-child th {
  background-color: #FBC503;
  color: white;
  font-size: 22px;
  padding: 15px;
  border-radius: 8px 8px 0 0;
}

#game-table thead tr:nth-child(2) th {
  background-color: #eaeaea;
  color: #333;
  padding: 10px;
  font-weight: bold;
}

#game-table td, #game-table th {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

#game-table tbody tr:hover {
  background-color: #f1f7ff;
}

.game-name a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

.game-time {
  font-size: 12px;
  color: #888;
}

.old-value {
  color: #2980b9;
  font-size: 23px;
  font-weight: bold;
}

.new-value {
  color: #28a745;
  font-size: 23px;
  font-weight: bold;
}

.chart-btn {
  background-color: #e74c3c;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  text-decoration: none;
 
  font-size: 13px;
}

@media (max-width: 600px) {
  .game-time {
    display: block;
  }
  #game-table th, #game-table td {
   
    padding: 10px;
  }
}

.strip {
 background-color: #FBC503;
  color: white;
  font-size: 22px;
  padding: 15px;
  border-radius: 8px 8px 0 0;
}

.strip h2 {
  font-size: 27px;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
  margin: 0;
}






/* Main wrapper */
.Select_selectMainDiv__QD2cf {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* All select boxes */
.Select_selectTag {
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  background: white;
  color: #333;
  appearance: none;
  min-width: 180px;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Optional 2nd select styling */
.Select_secondTag {
  min-width: 120px;
}

/* Hover and focus effects */
.Select_selectTag:hover,
.Select_selectTag:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
}

/* Submit button */
.Select_button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to right, #4e54c8, #8f94fb);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(78, 84, 200, 0.3);
}

.Select_button:hover {
  background: linear-gradient(to right, #3f46b6, #6d72f5);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(78, 84, 200, 0.4);
}



/* General Table Section */
.newtable {
  padding: 30px 0;
  background: #f9fafc;
}

/* Table styling */
.newtable .table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Table Header */
.table-header {
  background-color: #28a745;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Date Column */
.table-date {
  font-weight: bold;
  color: #333;
  background: #f0f0f0;
  text-align: center;
  padding: 12px;
  white-space: nowrap;
}

/* Cell Content */
.table-cell {
  padding: 12px;
  text-align: center;
  font-weight: 600;
  color: #333;
  background: #fff;
}

.table-header {
background-color: #FBC503;
}
/* Alternate row background */
.newtable tr:nth-child(even) .table-cell {
  background-color: #f8f9fa;
}

/* Highlight today */
.newtable tr td.table-date span:contains("Today") {
  color: #34c38f;
  font-weight: 700;
}

/* Responsive wrapper already exists with .table-responsive */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Remove Bootstrap padding override */
.nopadding {
  padding: 0 !important;
}

/* Font Fix */
.newtable .table,
.newtable .table td,
.newtable .table th {
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
}

.footer-links {
  background: #1e293b; /* deep navy */
  padding: 30px 0;
  color: #fff;
  border-top: 4px solid #6366f1;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s;
}

.footer-link:hover {
  color: #fff;
  transform: scale(1.05);
}

.divider {
  color: #94a3b8;
  font-weight: 400;
}



div#chart-form{width:96%;max-width:960px;margin:auto;color:white;border:1px solid rgb(231, 170, 38);background-color:#28a745;padding:8px 4px;}
h2#chart-text{padding:2px;color:black;line-height:20px;}
select#month,select#year,input#direct-chart{width:30%;min-width:180px;max-width:320px;margin:8px 1%;height:40px;font-size:1em;font-weight:bold;padding:8px;}
input.text,input.log{width:84%;margin:8px auto;font-size:1em;font-weight:bold;padding:8px 4px;}
input.post, input.value{width:30%;min-width:120px;max-width:320px;margin:8px 1%;font-size:1em;font-weight:bold;padding:8px 4px;}
tr.holder{border:1px solid rgb(231, 170, 38);background-color:#FBC503;}
td.row{vertical-align:middle;}
button {
  border-radius:0
}
button:focus:not(:focus-visible) {
  outline:0
}
button,
input,
optgroup,
select,
textarea {
  margin:0;
  font-family:inherit;
  font-size:inherit;
  line-height:inherit
  width: 30%;
  min-width: 180px;
  max-width: 320px;
  margin: 8px 1%;
  height: 40px;
  font-size: 1em;
  font-weight: bold;
  padding: 8px;
}
button,
select {
  text-transform:none
}
[role=button] {
  cursor:pointer
}
select {
  word-wrap:normal
}
select:disabled {
  opacity:1
}
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display:none!important
}
[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance:button
}
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor:pointer;
   border: 1px solid #003399;
  background-color: #003399;
  color:#fff;
}
::-moz-focus-inner {
  padding:0;
  border: 1px solid #003399;
  background-color: #003399;
  color:#fff;
}
textarea {
  resize:vertical
}
fieldset {
  min-width:0;
  padding:0;
  margin:0;
  border:0
}