/* Chart Heading */
.satta-chart-heading {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: #fff200;
  text-shadow: 0 0 5px #fff200, 0 0 10px #ffd700, 0 0 20px #ffeb3b, 0 0 30px #fbc02d;
  background: linear-gradient(to right, #1a1a1a, #2c2c2c);
  padding: 20px;
  border: 3px solid #ffd700;
  border-radius: 12px;
  margin: 30px auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

/* Table Wrapper */
.satta-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  padding: 8px;
  background: linear-gradient(to right,#fefefe,#fffde7);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,235,59,0.15);
}

/* Table */
.satta-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 900px;
  font-family: 'Orbitron', sans-serif;
  background-color: yellow;
  border-radius: 8px;
  overflow: hidden;
  color: #000;
  font-size: 11px;
  text-align: center;
  table-layout: fixed;
}

.satta-table thead tr th,
.satta-table tbody tr td {
  padding: 6px;
  border: 1px solid #ffeb3b;
  font-size: 11px;
}

/* Sticky Date Column */
.satta-table .date-col {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #111;
  min-width: 120px;
  font-weight: bold;
  color: #fff200;
  text-align: left;
  font-size: 12px;
}

/* Thead Sticky */
.satta-table thead {
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: #fdd835;
  color: #000;
}

.satta-table thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  background: #fdd835;
  color: #000;
}

/* Today & Sunday Highlights */
.satta-table td.today {
  background-color: #4caf50;
  color: #fff;
  font-weight: 500;
}

.satta-table td.sunday {
  background-color: #ff5252;
  color: #fff;
  font-weight: 500;
}


/* Container for all links */
.link-container {
    padding: 20px;
    background: linear-gradient(to right, #f1f8e9, #fffde7);
}

/* Each link wrapper */
.link-item {
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
    width: 100%;
    box-sizing: border-box;
}

/* Box inside each link */
.link-box {
    background: linear-gradient(135deg, #fff176, #fdd835);
    color: #000;
    padding: 16px;
    font-weight: bold;
    border: 2px solid #fbc02d;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(253, 216, 53, 0.4);
    font-size: 12px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}
