
body{margin:0; padding:0; font-family:Arial;background:#fff;}
nav{background:black;color:#FFD700;padding:14px;font-size:24px;font-weight:700;text-align:center;white-space:nowrap;overflow:hidden;}
marquee{color:#000;font-weight:600;background:#FFD700;padding:10px;font-size:16px;}
.disclaimer{background:red;color:#fff;padding:12px;font-size:14px;font-weight:bold;text-align:center;}
.disclaimer a{color:yellow;text-decoration:underline;}
.box{border:2px solid #000;margin:15px;padding:12px;text-align:center;border-radius:6px;background:#f9f9f9;}
.results-box{margin:15px;border:2px solid #000;padding:10px;border-radius:6px;}
.result-line{font-size:20px;font-weight:bold;padding:6px;text-align:center;border-bottom:1px solid #ccc;}
table{width:100%;border-collapse:collapse;margin-top:20px;}
thead{background:red;color:white;font-size:20px;font-weight:700;}
td,th{border:1px solid #000;padding:8px;text-align:center;font-size:18px;font-weight:bold;}
footer{background:#000;color:#FFD700;padding:20px;text-align:center;font-size:18px;margin-top:30px;}
.game-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
}

.game-table thead {
    background: #FFD700; /* Yellow */
    color: #000; /* Black text */
    font-size: 22px;
    font-weight: 700;
}

.game-table th, .game-table td {
    border: 2px solid #000;
    padding: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.game-table .game a {
    color: #FFD700; /* Yellow Game Name */
    font-weight: 800;
    text-decoration: none;
}

.game-table td {
    color: #000; /* Yesterday / Today Black */
}

.game-table .time {
    color: red; /* Time Red */
    font-weight: 700;
}

.game-table tbody tr:nth-child(even){
    background:#FFF8C6; /* Light Yellow */
}
/* Stylish Form Box */
/* Stylish Form Box */
.search-box {
    width: 95%;
    max-width: 600px;
    background: #ffffff;
    border: 2px solid #000;
    padding: 25px 18px;
    margin: 25px auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    text-align: center;
    box-sizing: border-box;
}

.search-box label {
    font-size: 18px;
    font-weight: bold;
    color: black;
    display: block;
    margin-bottom: 15px;
}

.search-box form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.search-box input[type="date"] {
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid black;
    font-weight: 600;
    background: #fff;
    color: black;
    font-size: 16px;
    outline: none;
    flex: 1;  /* FIX OVERFLOW */
}

.search-box input[type="date"]:focus {
    border-color: red;
    box-shadow: 0 0 6px red;
}

.search-box button {
    background: red;
    color: white;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 17px;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
    white-space: nowrap;
}

.search-box button:hover {
    background: #000;
    color: yellow;
    transform: translateY(-2px);
}

/* Responsive — Stack layout */
@media (max-width: 600px){
    .search-box form {
        flex-direction: column;
        gap: 15px;
    }
    .search-box input[type="date"],
    .search-box button {
        width: 100%;
    }
}





.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}
.result-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}
.result-table th {
    background: yellow;
    color: black;
    padding: 12px;
    border: 1px solid black;
    font-weight: bold;
}
.result-table td {
    padding: 12px;
    border: 1px solid black;
    text-align: center;
    color: black;
}
.result-table .res {
    color: red;
    font-weight: bold;
}

.no-data {
    color: red;
    text-align: center;
    font-weight: bold;
    padding: 20px;
}

/* Floating Button Container */
.fab-container {
    position: fixed;
    bottom: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Floating Button Common Style */
.fab {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0,0,0,.35);
    transition: 0.2s;
    border: none;
}

.fab img {
    width: 32px;
}

/* Refresh button style */
.refresh-btn {
    background: red;
    color: white;
}

/* Hover effect */
.fab:hover {
    transform: scale(1.12);
}

.promo-box {
    background: white;
    border: 3px double blue;
    border-radius: 18px;
    text-align: center;
    padding: 15px;
    margin: 15px auto;
    width: 95%;
    max-width: 600px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.15);
}

.promo-title {
    color: red;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
}

.promo-content {
    font-size: 15px;
    color: black;
    font-weight: 600;
    margin: 10px 0;
}

.promo-name {
    color: green;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.promo-phone {
    font-size: 20px;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.promo-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-call,
.btn-whatsapp {
    padding: 8px 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 14px;
    color: #fff;
    border: 3px double red;
    text-decoration: none;
    background: green;
    min-width: 120px;
    text-align: center;
}

.btn-whatsapp:hover,
.btn-call:hover {
    transform: scale(1.05);
    transition: 0.2s;
}
.offerBox {
    background: #fff;
    border: 3px double blue;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    width: 95%;
    margin: 10px auto;
}

.offerText {
    color: red;
    font-size: 15px;
    font-weight: bold;
}

.offerText hr {
    border: none;
    border-bottom: 2px dashed blue;
    width: 80%;
    margin: 8px auto;
}

.offerBox a {
    color: blue;
    word-wrap: break-word;
    font-size: 16px;
}

.ownerName {
    font-size: 20px;
    color: green;
    font-weight: bold;
    margin-top: 10px;
}.offerBox2 {
    background: #fff;
    border: 3px double blue;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    width: 95%;
    margin: 10px auto;
    font-weight: bold;
}

.offerText2 {
    font-size: 15px;
    color: red;
    margin-bottom: 0;
}

.ownerName2 {
    font-size: 20px;
    color: green;
    font-weight: bold;
    margin-top: 8px;
}

.callNumber2 {
    font-size: 22px;
    color: #000;
    display: inline-block;
    margin-top: 5px;
    font-weight: bold;
}

.buttonArea2 {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.offerBtn2 {
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 16px;
    border: 3px double red;
    font-weight: bold;
    background: green;
    color: #fff;
    text-decoration: none;
}

.callBtn2, .waBtn2 {
    min-width: 140px;
    text-align: center;
}


.callNumber {
    font-size: 22px;
    color: #000;
    font-weight: bold;
}

.buttonArea {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.offerBtn {
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 16px;
    border: 3px double red;
    font-weight: bold;
    background: green;
    color: #fff;
}



@media(max-width:600px){
.game-table th, .game-table td {
    font-size: 14px;
    padding: 6px;
}
}

@media(max-width:600px){
nav{font-size:18px;}
td,th{font-size:14px;}
}
