* {
    font-family: 'Tahoma', sans-serif; 
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.background-image {
    position: fixed; /* Fixed position */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../assets/img/bg.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    z-index: -1; 
}

.background-image::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5); 
}

.content {
    position: relative; 
    z-index: 1; 
    padding: 10px;
    height: 100%; 
 }

.header-text {
    color: white; 
    text-align: center;
    z-index: 2;
    position: relative;
    padding-top: 60px; 
}

.subheader-text {
    color: white; 
    text-align: center;
    z-index: 2;
    position: relative;
}

.centered-image {
    max-width: 100%;
    height: auto;
    z-index: 2;
  display: flex;
  justify-content: center;
text-align: center;
}


.centered-image img {
    opacity: 0;
    visibility: hidden;
    height: auto;
    max-width: 100%;
}

@keyframes zoomBounce {
    0% {
        animation-timing-function: ease-out;
        transform: scale(0);
    }
    25%, 55%, 85%, 100% {
        animation-timing-function: ease-out;
        transform: scale(1);
    }
    40% {
        animation-timing-function: ease-in;
        transform: scale(1.4);
    }
    70% {
        animation-timing-function: ease-in;
        transform: scale(1.2);
    }
    90% { transform: scale(1.1) }
}

@keyframes slideInFromRightImage {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


@keyframes zoomInImage {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.centered-image img {
    animation: zoomInImage 1.5s;
    max-width: 100%;
    height: auto;
}

.centered-image.active img {
    opacity: 1;
    visibility: visible;
    animation: zoomInImage 1.5s;
    animation-delay: 500ms; 
    max-width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
  display: flex;
  justify-content: center;
text-align: center;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    .centered-image img {
        width: 100%;
        height: auto;
    }
}

.carousel {
 z-index: 2;
    position: relative;
    height: 120px; 
}

.carousel-text {
    font-size: 20px; 
    text-align: center;
    padding: 10px;
    color: #fc0;
    font-weight: bold;
}

.carousel-indicators li {
    background-color: white; 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    text-indent: -999px; 
}

.carousel-indicators .active {
    background-color: red; 
}

.carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px; 
}

.carousel-indicators {
    list-style: none; 
    padding: 0; 
}

.form-container {
    text-align: center;

    z-index: 2;
    position: relative;
}

.form-container input[type="tel"], .form-container input[type="text"], .form-container button {
width: 100%;    
max-width: 600px; 
    padding: 10px;
    margin: 10px auto; 
    display: block; 
    border-radius: 30px;
}

.form-container input[type="tel"], .form-container input[type="text"] {
    border: 1px solid #ddd;
    text-align: center; 
}

.form-container button {
    background-color:  #fc0; 
    color: black;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px; 
}

.form-container button:hover {
    background-color: 	#FFD700; 
}

.terms-and-conditions {
    text-align: center;
    z-index: 2;
    position: relative;
    padding-bottom: 10px;
    color: white;
    font-size: 0.8em;
}

.mobile-social {
        padding-bottom: 100px;
}


.mobile-social-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.mobile-social-appear.active {
    animation: slideInFromLeft 1s ease-out forwards;
    visibility: visible;
}

@media screen and (min-width: 768px) {
    .mobile-social {
        display: none; /* Hide burger menu */
    }
}

.terms-and-conditions a {
    color: white; 
}

.terms-and-conditions a:hover {
    text-decoration: underline; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-appear {
    opacity: 0; 
    visibility: hidden; 
}

.carousel-appear.active {
    animation: fadeIn 1s ease-in-out forwards; 
    visibility: visible; 
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
}

.form-appear.active {
    animation: slideInFromLeft 1s ease-out forwards;
    visibility: visible;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-appear .button-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
}

.form-appear.active .button-appear {
    animation: slideInFromRight 1s ease-out forwards;
    visibility: visible;
}

@keyframes slideUpFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.text-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.text-appear.active {
    animation: slideUpFromBottom 1s ease-out forwards;
    visibility: visible;
}

@keyframes fadeInHeader {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-text-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.subheader-text-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.header-text-appear.active {
    animation: fadeInHeader 1s ease-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.subheader-text-appear.active {
    animation: fadeInHeader 1s ease-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar {
    width: 100%;
    padding: 10px 20px;
    z-index: 3; 
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 20px; 
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

    .nav-item {
        opacity: 1;
margin-right: 20px;
margin-top: 20px;
margin-left: 20px;
    }


.nav-item a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-item i {
    margin-right: 10px; 
}


.nav-item a:hover {
    color: #fc0;
}

.burger {
    display: none;
    cursor: pointer;
margin-top: 15px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}


.navbar-logo {
    height: 50px; 
    position: absolute;
    right: 20px;
    top: 10px; 
}

.navbar-social {
    height: 40px; 
    position: absolute;
    right: 140px;
    top: 10px; 
}

@media screen and (max-width: 768px) {
    .burger {
        display: none;
    }    
.navbar-logo {
        height: 40px; 
        left: 0; 
        top: 5px; 
    }

    .nav-list {
 display: none;
    }

    .nav-list li {
        opacity: 1;
    }

.nav-list li:first-child {
    margin-top: 60px; 
}

.nav-item i {
    margin-right: 20px; 
}

    .nav-bar.active .nav-list {
        transform: translateX(0);
    }
}

.nav-active {
    transform: translateX(0);
    z-index: 2;
}

.burger-toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-toggle .line2 {
    opacity: 0;
}

.burger-toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.accordion {
z-index: 2;
position: relative;
max-width: 800px;
width: 100%;
}

.terms {
z-index: 2;
position: relative;
max-width: 800px;
margin: auto;
width: 95%;
background: rgba(0, 0, 0, 0.5);
}

.terms::-webkit-scrollbar {
    width: 12px; /* Adjust the width of the scrollbar */
}

.terms::-webkit-scrollbar-track {
    background: #2e2e2e; /* Dark track/background */
}

.terms::-webkit-scrollbar-thumb {
    background: #555; /* Darker thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
}

.terms::-webkit-scrollbar-thumb:hover {
    background: #888; /* Slightly lighter thumb on hover */
}


.accordion-item {
    margin-bottom: 20px;
}


.accordion-item {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}

.accordion-header {
    margin-bottom: 10px;
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}

.accordion-button {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}

.accordion-button::after {
    margin-left: auto;
    margin-right: 0;
}

.accordion-button:focus {
    z-index: 2;
    border-color: white;
    outline: 0;
    box-shadow: unset;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: white;
    box-shadow: unset;
}


@keyframes rollDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.accordion-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.accordion-appear.active {
    animation: rollDown 1s ease-out forwards;
    visibility: visible;
}


.parent-container {
    justify-content: center; 
    align-items: start; 
    width: 100%; 
    height: 85vh; 
    overflow: auto; 
    z-index: 2;
    position: relative;
margin: auto;
}

.news-container-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.news-container-appear.active {
    animation: rollDown 1s ease-out forwards;
    visibility: visible;
}

.news-container {
    margin: auto;
    z-index: 2;
    position: relative;
    max-width: 800px; 
    width: 100%; 
    justify-content: center; 
}

.parent-container::-webkit-scrollbar {
    width: 12px; /* Adjust the width of the scrollbar */
}

.parent-container::-webkit-scrollbar-track {
    background: #2e2e2e; /* Dark track/background */
}

.parent-container::-webkit-scrollbar-thumb {
    background: #555; /* Darker thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
}

.parent-container::-webkit-scrollbar-thumb:hover {
    background: #888; /* Slightly lighter thumb on hover */
}

hr {
  height:4px;
  border-width:0;
  background-color:white;
  width:70%;
  margin: auto;
}

.news-article {
    margin-bottom: 40px;
    text-align: start;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    color: white;
}

.news-article-link {
    text-decoration: none !important;
}




.news-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.news-title {
    font-size: 24px;
    margin-left: 10px;
    margin-top: 10px;
    color: white;
}

.news-summary {
    font-size: 16px;
    color: white;
    margin-top: 5px;
    margin-left: 10px;
}

.news-summary-article {
    font-size: 16px;
    color: white;
    margin-top: 10px;
}


.news-time {
    font-size: 14px;
    color: white;
    margin-top: 5px;
font-style: italic;
direction: ltr;
text-align: right;
}

.more-news-header {
    z-index: 2;
    position: relative;
}


.news-header h1 {
margin-bottom: 0.3rem;
}

.pagination {
    display: flex;
    justify-content: center; 
    padding: 8px 16px;
    width: 100%;
    border-radius: 5px;
    z-index: 2;
    position: relative;
    margin: auto;
    padding-bottom: 200px;
}


.btn-back-news
{
    padding-bottom: 200px;
}

.pagination a {
    color: white;
    padding: 5px 12px;
    text-decoration: none;
    transition: background-color .3s;
    border-radius: 5px;
}

.pagination a.active {
    background-color: white;
    color: black;
}

.pagination a:hover:not(.active) {background-color: #ddd; color: black;}


.more-news-container {
    margin: auto;
    width: 100%; 
    justify-content: space-around; 
    overflow: auto; 
    position: relative;
}


.more-news-text {
    color: white; 
    text-align: center;
    padding-top: 0; 
}


.more-news-article {
  text-align: start;
  width: 100%;
  margin-bottom: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 900px;
    margin-left: auto;
        margin-right: auto;
}

.more-news-image {
    width: 100%;
    height: auto;
    max-width: 800px;
        border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.more-news-title {
    font-size: 24px;
    margin-top: 10px;
    color: white;
}

.more-news-summary {
    font-size: 16px;
    color: white;
    margin-top: 5px;
}

.more-news-time {
    font-size: 14px;
    color: white;
    margin-top: 5px;
font-style: italic;
}

.btn-centered {
    margin: auto;
    justify-content: center; 
display: flex;
width: 150px;
}

.profile-container {
margin-top: 20px;
    width: 100%; 
    justify-content: center; 
    display: block;
}

.profile-container-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.profile-container-appear.active {

    animation: zoomInImage 1.5s  forwards;
    visibility: visible;
}




     .card{

        width: 450px;
        border: none;
        border-radius: 15px;
        padding: 8px;
        background-color: #fff;
        position: relative;
        height: 470px;
       }

       .upper{

        height: 100px;

       }

       .upper img{

        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;

       }

       .user{
        position: relative;
       }

       .profile img{

        
        height: 80px;
        width: 80px;
        margin-top:2px;

       
       }

.profile-pic {
position: relative;
top: -20px;
}

       .profile{

        position: absolute;
        top:-50px;
        left: 38%;
        height: 90px;
        width: 90px;
        border:3px solid #fff;

        border-radius: 50%;

       }

       .follow{

        border-radius: 15px;
        padding-left: 20px;
        padding-right: 20px;
        height: 35px;
       }

       .stats span{

        font-size: 29px;
       }


.go-back {
    z-index: 2;
    position: relative;
    margin: auto;
color: white;
}

.btn-goback {
    z-index: 2;
    position: relative;
    margin: auto;
width: 450px;
        border-radius: 15px;
}

.go-back-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.go-back-appear.active {
    animation: slideInFromLeft 1s ease-out forwards;
    visibility: visible;
}

.live-feed::-webkit-scrollbar {
    width: 12px; /* Adjust the width of the scrollbar */
}

.live-feed::-webkit-scrollbar-track {
    background: #2e2e2e; /* Dark track/background */
}

.live-feed::-webkit-scrollbar-thumb {
    background: #555; /* Darker thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
}

.live-feed::-webkit-scrollbar-thumb:hover {
    background: #888; /* Slightly lighter thumb on hover */
}

.live-feed {
z-index: 2;
position: relative;
margin-top: 10px;
width: 100%;
border-radius: 15px;
padding-bottom: 200px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}


.live-feed-new {
max-width: 800px;
    padding-right: 0;
    padding-left: 0;
}

.lib-feed {
max-width: 1000px;
}

.broadage-footer-logo {
display: none !important;
}

.widget {
 border-radius: 15px !important;   
 max-width: 1200px;
 margin: auto;
} 

.widgetnew {
 max-width: 800px;
} 

.broadage-widgets-body {
   border-radius: 15px !important;     
}

.mob-logo {
position: relative;
z-index: 2;
margin: auto;
  display: none;
  justify-content: center;
text-align: center;
}


@media screen and (max-width: 768px) {
    .burger {
        display: none; /* Hide burger menu */
    }
    .navbar {
        display: none; /* Hide burger menu */
    }
    .mob-logo {
        display: flex; /* Hide burger menu */
    }
    .header-text {
        padding-top: 20px; /* Hide burger menu */
    }
    .bottom-nav {
        display: flex;
        z-index: 2;
        justify-content: space-around;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #2b542c; /* Or any color you prefer */
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Optional */
        color: white;
        height:80px;
    }
    
    .bottom-nav a {
        flex: 1; 
        text-align: center;
        padding: 1px;
        text-align: center;
        text-decoration: none;
        color: inherit; 
        padding: 0 0; /* Reduced padding - adjust as needed */
        margin: 0; /* Adjust if needed */
            line-height: 1; /* Adjust this value as needed */
         }
         
         
             .bottom-nav a i {
        padding: 5px;
         }
         
         
         
    .bottom-nav .active {
    background-color: #3c763d; /* Inverted background color */
    color: white; /* Inverted text color */
}
    .navbar-logo {
    height: 50px;
    position: relative;
    margin: auto;
    top: 10px;
}
}

@media screen and (min-width: 769px) {
    .bottom-nav {
        display: none; /* Hide bottom nav on larger screens */
    }
}



@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

.mob-logo-appear {
    opacity: 1;
    visibility: hidden;
    transform: translateY(100%);
}

.mob-logo-appear.active {
    animation: bounce-in-right 1s ease forwards;
    visibility: visible;
}






























.clickable {
    cursor: pointer;
    text-decoration: underline;
    color: white !important;
}

.odd-clickable {
    cursor: pointer;
}

.league-header td {
    cursor: pointer;
    background-color: #f7f7f7;  // or any other color
    font-weight: bold;
}

.table-wrapper .table {
    display: none;
}

.table {
font-size: 0.6rem;
    border-radius: 10px;
    overflow: hidden; 
}


@media (min-width: 768px) {
  .table {
font-size: 1rem; 
 }
  }

.container_leaders {
    display: flex;
    align-items: center;
    margin: auto;
}

.container_tables h3, .container_tables .h3 {
font-size: 1rem;
color: green;
cursor: pointer;
text-align: end;
margin-bottom: 0;
}

.container_tables {
    width: 100%;
}

.trophy-img {
height: 40px;
}

@media (min-width: 768px) {
.trophy-img {
height: 50px;
}
  }

body {
background-color: #F5F5F5 !important;
}

.nav {
    --bs-nav-link-padding-x: 0.2rem !important;
    --bs-nav-link-padding-y: 0.5rem !important;
    padding-left: 10px;
}

.nav-tabs {
    border-bottom: 0px !important;
}

ul {
    padding-inline-start: 15px;
}

@media (min-width: 768px) {
 .container_tables h3, .container_tables .h3 {
font-size: 1.5rem;
color: green;
cursor: pointer;
text-align: end;
margin-bottom: 0
}
  }

.league-icon {
height: 30px;
}

@media (min-width: 768px) {
.league-icon {
height: 50px;
}
  }

.nav-link.active {
    background-color: #d1e7dd !important;
    border-color: #d1e7dd !important;
}

.predictions {
z-index: 2;
position: relative;
margin-top: 10px;
width: 100%;
margin-bottom: 200px;
max-width: 1000px;
}

.leaders {
z-index: 2;
position: relative;
margin-top: 10px;
width: 100%;
margin-bottom: 200px;
}

.table
{width: 100%;
    table-layout: fixed;
}


.rtl-text {
    direction: rtl;
}

.gold-trophy {
    color: #DAA520;
}

.date-row {
    cursor: pointer;
}

.click-box {
    background-color: #198754;
    padding: 5px 5px;  
    border-radius: 5px; 
    cursor: pointer;    
    display: inline-block; 
    transition: background-color 0.3s ease;  
    width: 100%;
    box-sizing: border-box;
 /*   box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);*/
    box-shadow: 4px 4px 4px darkgreen;
    font-weight: bold;
}

@media (min-width: 768px) {
  .odds-cells {
width: 80%
  }
}

.click-box:hover {
    background-color: lightgrey;  
    color: #023020;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}


.odds-cells {
    text-align: center !important;  
    width: 50px;
}

@media (min-width: 768px) {
  .odds-cells {
width: 100px;
  }
}

.centered-table {
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
}

.bg-custom {
    background-color: #D1E7DD;
}

.text-gold {
    color: #DAA520; 
}

i.bi-trophy-fill {
    margin-left: 5px;  /* Adjust as necessary */
    margin-right: 5px; /* Adjust as necessary */
}

    .navbar-icon-link {
      font-size: calc(0.7 * 40px); /* Adjust the multiplier and base size to fit your navbar height */
      color: #ffffff; /* This sets the icon color to white */
            text-decoration: none; /* Removes the underline text decoration */
    }
    
    /* Override Bootstrap's default anchor color */
    .navbar-icon-link:hover,
    .navbar-icon-link:focus {
      color: #ffffff; /* This sets the icon color to white */
      text-decoration: none; /* Removes the underline text decoration */
    }


.table-winners {
    width: 95%;
    max-width: 800px;
    overflow: hidden;
    margin: auto;
    table-layout: auto;
}

.table-winners td {
  text-align: center;       /* Center horizontally */
  vertical-align: middle;   /* Center vertically */
}

.table-leaders td {
  text-align: center;       /* Center horizontally */
  vertical-align: middle;   /* Center vertically */
}

.custom-width {
    width: 90% !important; /* !important ensures that this style overrides any other width properties */
    margin: 0 auto; /* This will center the table within the container */
}

.homepage-countdown-value {
    font-size: 40px;
    font-weight: bold;
    color: #DAA520;
}

.homepage-next-draw-text {
        font-weight: bold;
        color: white;
}

.homepage-countdown-text
{
        color: white;
}

.container::-webkit-scrollbar {
    width: 12px; /* Adjust the width of the scrollbar */
}

.container::-webkit-scrollbar-track {
    background: #2e2e2e; /* Dark track/background */
}

.container::-webkit-scrollbar-thumb {
    background: #555; /* Darker thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
}

.container::-webkit-scrollbar-thumb:hover {
    background: #888; /* Slightly lighter thumb on hover */
}

.table-leaders
{
font-size: 0.6rem;
    border-radius: 10px;  
    overflow: hidden;
    width: 95%;
    max-width: 400px;
}

@media (min-width: 768px) {
 .table-leaders {
font-size: 1rem;
}
  }
  
  .homepage-countdown-value {
    margin-bottom: 0;
}

.hidden {
    display: none;
}

.text-red {
    color: #EE4B2B;
}

.text-yellow {
    color: #fc0;
}

.navicon {
   font-size: 30px;
   padding: 10px 0;
     margin: 0;
     display: flex;
    flex-direction: column;
}


.prizes {
z-index: 2;
position: relative;
max-width: 800px;
width: 95%;
padding-bottom: 10px;
}

.white-box {
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.60;
    letter-spacing: normal;
    color: #000;
    padding: 5px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 0 15px;
}

@keyframes bounce-in-up {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

.prizes-appear {
    opacity: 1;
    visibility: hidden;
    transform: translateY(100%);
}

.prizes-appear.active {
    animation: bounce-in-up 1s ease forwards;
    visibility: visible;
}

.results {
z-index: 2;
position: relative;
max-width: 1000px;
width: 100%;
padding-bottom: 200px;
padding-top: 20px;
}

.modal-content {
    --bs-modal-padding: 0.5ev; 
    text-align: center;
     }

.submenu a {
    display: block; /* This will make each link take up a full line */
    /* Add other styling as needed (padding, colors, etc.) */
}

.submenu {
    display: none; /* Initially hidden */
    /* Add additional styling as needed (background, borders, etc.) */
}

.submenu.active {
    display: block; /* Show submenu when active */
    /* Add additional styling for active state if needed */
}

.submenu2 a {
    display: block; /* This will make each link take up a full line */
    /* Add other styling as needed (padding, colors, etc.) */
}

.submenu2 {
    display: none; /* Initially hidden */
    /* Add additional styling as needed (background, borders, etc.) */
}

.submenu2.active {
    display: block; /* Show submenu when active */
    /* Add additional styling for active state if needed */
}


.select-league {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    z-index: 2;
    max-width: 1000px;
    margin-bottom:100px;
}

.select-league-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.select-league-appear.active {
    animation: slideUpFromBottom 1s ease-out forwards;
    visibility: visible;
}

.league-tile {
    background-color: rgba(255, 255, 255, 0.9); 
    border: 1px solid #ddd; 
    padding: 10px;
    text-align: center;
        border-radius: 15px;
        
}

.league-tile img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.league-tile p {
    margin: 0;
    font-size: 14px; /* Change as needed */
    color: darkgreen;
    text-decoration: none;
}

@media (min-width: 768px) {
    .select-league {
        grid-template-columns: repeat(4, 1fr); /* Or any number of columns you prefer */
    }
}


.error-message {
    position:relative;
    z-index: 2;
    color: red;
    font-style: italic;
}

.profile_details p {
        margin: 0; /* Removes default margin */
        line-height: 1.5; /* Adjusts the line height, smaller values mean closer lines */
        font-size: 1rem;
    }
    
    
.margbot {
    padding-bottom: 70px;
}

.accordion-button {
    text-align: start;
}


.past-draw {
    color: #959595 !important;
    font-style: italic;
}

.table-row-hover:hover {
    background-color: #f5f5f5; /* Change this color to your preferred hover color */
    cursor: pointer;
}

.icon-column {
    width: 8%;
    max-width: 8%;
    color: blue !important;
    }
    
.modal-details .modal-header {
    border-bottom: none;
        display: flex; /* Enables flexbox */
    justify-content: space-between; /* Positions the title and button at opposite ends */
    align-items: center; /* Vertically centers the items */
}

.modal-details .modal-body {
    border-top: none;
}

.modal-details .modal-title {
    flex-grow: 1; /* Allows the title to take up the available space */
    text-align: center; /* Centers the title text */
}


.ninerow {
    margin-right: calc(-.9 * var(--bs-gutter-x));
    margin-left: calc(-.9 * var(--bs-gutter-x));
}


/* Style the tab */
.tab {
  overflow: hidden;
      margin: auto;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  color: gold;
}

/* Create an active/current tablink class */
.tab button.active {
  color: gold;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.form-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* Media Query for Small Screens */
@media (max-width: 800px) {
  .form-dot {
    height: 5px;
    width: 5px;
  }
}

#group-1-table {
  width: 100%; /* Ensure the table takes the full width */
}

.tabcontent {
    margin-right: calc(-.9 * var(--bs-gutter-x));
    margin-left: calc(-.9 * var(--bs-gutter-x));
}

#group-1-table {
    padding: .25rem 0rem !important;
    vertical-align: middle;
    table-layout: auto;
}

#group-1-table.table-sm>:not(caption)>*>* {
    padding: .25rem 0rem;
}

#group-2-table {
  width: 100%; /* Ensure the table takes the full width */
}


.table-game.table>:not(caption)>*>* {
    padding: .5rem .3rem;
}

.tabcontent {
    margin-right: calc(-.9 * var(--bs-gutter-x));
    margin-left: calc(-.9 * var(--bs-gutter-x));
}

#group-2-table {
    padding: .25rem 0rem !important;
    vertical-align: middle;
    table-layout: auto;
}

#group-2-table.table-sm>:not(caption)>*>* {
    padding: .25rem 0rem;
}

#fixtures-table {
    padding: .25rem 0rem !important;
    vertical-align: middle;
    table-layout: auto;
}

#results-table {
    padding: .25rem 0rem !important;
    vertical-align: middle;
    table-layout: auto;
}

.table-results
{
    vertical-align: middle;
    table-layout: auto;
}


.table-draw-results
{
    vertical-align: middle;
    table-layout: auto;
}


::-webkit-scrollbar {
    width: 0px; /* Adjust the width of the scrollbar */
    height: 0px;
}

::-webkit-scrollbar-track {
    background: #2e2e2e; /* Dark track/background */
}

::-webkit-scrollbar-thumb {
    background: #555; /* Darker thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #888; Slightly lighter thumb on hover */
}


.results-fst-column {
    width: 15%;
    min-width: 15%;
    }


/* Animation for tilting the button */
@keyframes tiltAnimation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.navicon-clicked {
    animation: tiltAnimation 0.5s ease;
}
