   body {
    background-color: #000
}
   * {
      box-sizing: border-box;
     margin:0;
    }

 .header {
            background-color: #333;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px;
        }
ul {
    padding-inline-start: 2px;
}
        .nav {
            list-style: none;
            display: flex;
            gap: 2px;
        
        }

        .nav a {
            text-decoration: none;
            color: #fff;
            padding: 5px 5px;
            border-radius: 5px;
            background-color: #de2f2f;
            transition: background-color 0.3s ease;
        }

        .nav a:hover {
            background-color: #9da206;
        }
        .banner {
          text-align: center;
        }

        .text {
            font-size: 30px;
            color: #fff; /* Text color */
            font-weight: bold;
            text-transform: uppercase;
            background-color: #333; /* Background color of the banner */
            width: 100%;
            padding: 5px;
           
        }
 

a {
    text-decoration: none;
    color: inherit;
}  
marquee { 
   padding:5px;
   font-size:15px; 
   color:white;
}


.gamename
{
font-size:30px;
color: #fff;
} 

.gameresult
{
font-size:40px;
color: #FFD700;
}

.column {
        text-align: center;
        width: 50%; /* Each column takes 50% of screen width */
        float: left;
        box-sizing: border-box;
        padding: 5px;
        background-color: #333; /* Background color for columns */
        color: white; /* Text color for columns */
        border: 1px solid black;
    }

    /* Style the game name */
    .gamename2 {
        font-size: 1.1em;
        font-weight: bold;
    }

    /* Style the time font */
    .timefont {
        font-size: 1em;
        color: #FFD700;
    }


/* Style the result numbers */
.todays-result-number {
  font-size: 1.6em;
  display: inline-block;
  position: relative;
  width: 50px;
  height: 30px;
  background-color: #000000;
  border-radius: 50px;
}

    /* Style the result numbers inside spans */
.number {
  color: #00fff1; /* Gold color for numbers */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.row:after {
      content: "";
      display: table;
      clear: both;
    }


#search-form{ 
    background-color: #333;
    text-align: center;
    border-radius: 10px;
    padding: 8px 4px;}

#month, #year, #search {
    width: 30%;
    margin: 8px 1%;
    height: 40px;
    font-size: 1em;
    font-weight: 700;
    padding: 8px;
}
table {
    text-align: center;
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
}
   
th {background-color:#333;color: #ffffff;font-size: 12px;font-weight:bold;padding: 10px 0px 10px 2px;}

.tableside
{background-color:#333;color: #ffffff;font-size:13px;}


        .button-container {
            display: flex;
            flex-direction: column; /* Arrange buttons vertically */
            width: 100%;
            justify-content: center; /* Center buttons vertically */
            align-items: center; /* Center buttons horizontally */
        }

        .button {
            display: block;
            width: 95%;
            padding: 8px;
            text-align: center;
            background: #333; /* Gradient background */
            color: #fff; /* Button text color */
            text-decoration: none;
            font-size: 18px;
            margin-bottom: 10px; /* Add margin between buttons */
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
        }

        .button:hover {
            transform: scale(1.05); /* Button scale on hover */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Button shadow on hover */
            background: linear-gradient(90deg, #8c7706, #890827); /* Gradient background on hover */
        }
 
      
bottom, a {
    text-decoration: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}


.bottom-container {
    text-align: center;
}


.bottom {
  display: inline-block;
  padding: 5px 5px;
  background-color: #8c670e;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  margin: 5px;
  transition: background-color 0.3s, transform 0.2s;
}

.bottom:hover {
    background-color: #0056b3; 
    transform: scale(1.05);
}

