html {
  font-size: 14px;
  direction:rtl;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;  
}

body {
    margin-bottom: 60px;
    font-family: 'Rubik';
    font-weight: 500;
}

.container{
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 100px;
}

.bookmaker_logo{
    width: 55px;
}

.rtl_css {
    direction: ltr;
}

#spinner {
    position: fixed;
    top: 0;
    left: 3;
    width: 100%;
    height: 100%;
    background-color: #38393ab0; /* Light overlay */
    z-index: 1050; /* Ensure it's above other elements */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.team-logo{
    width: 50px;
}

.League-logo{
    width:80px;
}

main {
    flex: 1; /* Pushes the footer to the bottom */
}

.scrollable {
    overflow: auto; /* Allows scrolling */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

    /* For Webkit browsers (Chrome, Safari) */
    .scrollable::-webkit-scrollbar {
        display: none;
    }

footer {
    background-color: #f8f9fa; /* Light gray */
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
    z-index: 1000;
}

.btn-round {
    padding: .575rem .65rem;
    font-size: 1rem;
    border-radius: 50%;
    line-height: 1.2;
    background-color: #343a42 ;
    border-color: #343a42 ;
}


.footer{
    line-height: 20px !important;
}
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.loader {
    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #000;
    border: 2px solid;
    box-sizing: border-box;
    position: relative;
    transform-origin: left;
    animation: l2 1s infinite linear;
}

    .loader::before,
    .loader::after {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        margin: auto;
        width: 50%;
        aspect-ratio: 1;
        border-radius: 50%;
        border: 2px solid;
        box-sizing: content-box;
        transform-origin: 50% calc(100% - 4px);
        animation: inherit;
    }

    .loader::after {
        inset: auto 0 calc(100% + 2px);
        animation-duration: 0.5s;
        animation-direction: reverse;
        transform-origin: 50% calc(200% - 2px);
    }

@keyframes l2 {
    100% {
        transform: rotate(1turn)
    }
}