﻿:root {
    --primary-color: #000000;
    --secondary-color: #FF0059;
    --font-color: #000000;
    --bg-color: #ffffff;
    --secondary-bg-color: #2e2e2e;
    --heading-color: #292922;
    --shadow-color: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    --shadow-color-banner: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    --banner-height: 40px;
}



[light-theme="light"] {
    --primary-color: black;
    --secondary-color: rgb(84, 150, 150);
    --font-color: #e1e1ff;
    --bg-color: #f7f7f7;
    --heading-color: #818cab;
    --shadow-color: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    --shadow-color-banner: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}


[dark-theme="dark"] {
    --primary-color: rgb(255, 255, 255);
    --secondary-color: #FF0059;
    --font-color: #424242;
    --bg-color: rgb(31, 32, 35);
    --secondary-bg-color: rgb(46, 46, 46);
    --heading-color: #292922;
    --shadow-color: rgb(0 0 0 / 35%) 0px 5px 15px;
    --shadow-color-banner: rgb(0 0 0 / 35%) 30px 5px 15px;
    --banner-height: 40px;
}

@font-face {
    font-family: 'TTNorms';
    src: url("../fonts/TTNorms.woff2") format("woff2");
}


.login-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .login-video-container video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 0;
        transform: translate(-50%, -50%) scale(1.05);
        transform-origin: center;
    }

.modal-video-container {
    position: relative;
    width: 100%; /* The container will take the full width of its parent */
    padding-top: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 = 0.5625) */
    overflow: hidden;
}

.modal-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.1); /* Center and scale the video */
    transform-origin: center;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 5%;
}

.image-wrapper {
    display: flex;
    width: 150%;
    animation: scroll-horizontal 35s linear infinite;
}

    .image-wrapper img {
        flex-shrink: 0;
    }

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes flash {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.flashing-icon {
    animation: flash 7s infinite;
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
    margin-top: 5px;
}

.icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    z-index: 200;
}

.banner {
    text-align: center;
    background-color: #50D0D0;
    color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 300;
    height: var(--banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.vert-text {
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: absolute;
    top: 87%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    background-color: rgb(0 0 0 / 74%);
    padding: 5px;
    z-index: 100;
}

.shadow {
    box-shadow: var(--shadow-color) !important;
}

.shadow-header {
    box-shadow: var(--shadow-color-banner) !important;
}

.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

.material-icons.md-70 {
    font-size: 70px;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 90%;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}


html, body {
    font-family: TTNorms,Verdana,sans-serif;
    color: var(--primary-color);
    background-color: var(--bg-color);
}

.menu {
    height: 100%;
    overflow: auto;
}

.btn-ltw {
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    font-family: TTNorms,Verdana,sans-serif;
    font-size: 1rem;
    line-height: 3rem;
    padding: 0 1rem;
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    whitespace: nowrap;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-align: center;
    background: #549696;
    color: #fff;
    outline: 0 !important;
    border-radius: 2rem;
}

.outline-0 {
    outline: 0 !important;
}

.mb-2-5 {
    margin-bottom: 0.75rem !important;
}

.entry-details-panel {
    --swiper-theme-color: var(--secondary-color);
}

.info-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

.prize-label {
    padding: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.modal-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.6);
}

.custom-modal-content {
    background: white;
    border: 1px solid var(--secondary-bg-color);
    border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0,0,0,.25);
    display: block;
    max-width: 80%;
    min-width: 50%;
    max-height: 90%;
    position: fixed;
    z-index: 200;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    color: black;
}

.modal-guts {
    padding: 15px;
    overflow-y: auto;
}

.modal-guts-timer {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.custom-modal-content table {
    color: var(--primary-color);
}

    .custom-modal-content table td {
        border-top: 1px solid #5f616d !important;
    }

    .custom-modal-content table th {
        border-top: none !important;
        font-weight: 400 !important;
    }

.custom-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.custom-modal-content h1 {
    font-size: 150%;
    margin: 0 0 15px;
}

.modal-close {
    padding: 1rem;
    margin: -1rem -1rem 0rem auto;
    color: var(--primary-color);
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
}

    .modal-close:focus {
        outline: 0 !important;
    }

.favorite-button {
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-left: 5px;
    padding-right: 0px;
    outline: 0 !important;
    line-height: 0 !important;
}

    .favorite-button:focus {
        outline: 0 !important;
    }

.brand-favorite {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.fade-in {
    animation: fadeIn ease 600ms;
    -webkit-animation: fadeIn ease 600ms;
    -moz-animation: fadeIn ease 600ms;
    -o-animation: fadeIn ease 600ms;
    -ms-animation: fadeIn ease 600ms;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

html {
    -ms-content-zooming: none;
    -ms-touch-action: pan-x pan-y;
}


.play-button-overlay:before {
    content: '\25BA';
    color: white;
    font-size: 25px;
}

.play-button-overlay {
    height: 5rem;
    width: 5rem;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: 4px solid hsla(0,0%,100%,0.5);
    border-radius: 50%;
    transition: all 0.4s;
    background-color: hsla(230,12%,13%,0.3);
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}

.more-details-icons > div {
    cursor: pointer;
}

.square-control {
    border-radius: 0;
}

.c-pointer {
    cursor: pointer;
}

.list-header {
    font-size: 3rem;
    text-align: center;
    letter-spacing: 2px;
    color: black;
    line-height: normal;
    font-weight: 600;
}

.money-header-small {
    font-size: 1.7rem;
    color: black;
    line-height: normal;
    font-weight: 600;
}

    .money-header-small::before {
        content: "/";
        position: relative;
        top: 0;
        left: -0.4rem;
        color: #FF0059;
        font-weight: bold;
    }


.money-header {
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 2px;
    color: black;
    line-height: normal;
    font-weight: 600;
}

    .money-header::before {
        content: "/";
        position: relative;
        top: 0;
        left: -0.4rem;
        color: #FF0059;
        font-weight: bold;
    }

.card-link-override {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}

    .card-link-override:hover {
        color: inherit; /* blue colors for links too */
        text-decoration: inherit; /* no underline */
    }

    .card-link-override:active {
        color: inherit; /* blue colors for links too */
        text-decoration: inherit; /* no underline */
    }

.login-page {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    color: white;
    align-items: center;
    width: 100%;
    height: 100%;
}

.background-container {
    width: 100%;
    background-image: url('../img/kioskbackground.png');
    background-size: cover; /* Cover the entire div */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
}

.swiper-wrapper {
    align-items: center !important;
}

.entry-information {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.arrow-back {
    color: var(--secondary-color);
}

/*.select-lite {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .3rem;
    line-height: 1.5;
    color: var(--primary-color);
    background-color: var(--secondary-bg-color);
    ;*/ /*var(--bg-color);;*/
/*background-clip: padding-box;
    border: none;*/ /*1px solid #ccc;*/
/*transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;*/
/*max-width: 170px;
    border-radius: 4px;
    height: 45px;
    letter-spacing: 0.2px;
    font-size: 17px;*/
/*box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 1px 2px rgba(0, 0, 0, .23);*/
/*box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 1px 2px rgba(0, 0, 0, .23);*/
/*text-overflow: ellipsis;
}*/

.select-lite:focus {
    outline: 0 !important;
}

.select-lite > option {
    line-height: 37.71429;
}

.clear-button {
    padding: .3rem .3rem;
    white-space: nowrap;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide-video {
    justify-content: center;
}

.swiper-slide {
    padding: 45px;
    overflow: hidden;
}

.swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    text-align: center;
    font-size: 16px;
    color: transparent;
    background: white !important;
}

.swiper-pagination-bullet-active {
    background: #FF0059 !important;
}

.no-glow:focus {
    box-shadow: none !important;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #ddd;
}

::-webkit-scrollbar-thumb {
    background: #666;
}


.learn-more {
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
}

.close_vid {
    top: 10px;
    cursor: pointer;
    opacity: 1;
    position: absolute;
    z-index: 999;
    right: 10px;
    border: 0;
    color: var(--primary-color);
    background-color: transparent;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
}


    .close_vid:focus {
        outline: 0 !important;
    }


.hideContent {
    display: none !important;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    cursor: pointer;
    color: #FF0059;
}

    .play-button:hover {
        opacity: 0.8 !important;
    }


.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.25;
    color: black;
    margin-left: 2px;
}

    .card-title::before {
        content: "/";
        position: relative;
        top: 0;
        left: -0.4rem;
        color: #FF0059;
        font-weight: bold;
    }

.entry-card .card-text {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #707070;
}

.entry-card .card-text-wrap {
    font-size: 0.85rem;
    overflow: hidden;
    color: #707070;
}


.section-dates {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.entry-card {
    height: auto;
    max-width: 450px;
    width: 100%;
}
    /**/
    /*.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1.0;
    transition: opacity 400ms ease 50ms;
}

.fade-in-plain {
    opacity: 1.0;
}*/

    .entry-card .card-body {
        width: 100%;
        height: 100%;
        padding-right: 0px;
        padding-left: 0px;
    }

    .entry-card .card-thumb {
        border-radius: 0.5rem;
        display: flex;
        overflow: hidden;
        position: relative;
        padding-bottom: 75%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        background-color: #f0f0f0; /* Light gray placeholder */
    }


.card-list {
    list-style: none;
    justify-content: center;
}


.section-card {
    border-color: #e6e6e6 !important;
    border-radius: 0.5rem;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    justify-self: center;
    height: auto;
    max-width: 450px;
    width: 100%;
}

    .section-card .card-body {
        height: 220px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        width: 100%;
    }


.container-padding {
    padding-left: 4%;
    padding-right: 4%;
}

.container {
    max-width: 1800px;
}



/*.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 266px);
    gap: 50px;
    justify-content: center;
}*/

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 50px);
    justify-content: center;
    /* Optional improvements */
    container-type: inline-size;
    contain: layout style paint;
}

.grid-item {
    justify-self: center; /* Centers just this item horizontally */
}

    .grid-item img {
        box-sizing: border-box;
        margin: 0;
        min-width: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        left: 0;
        top: 0;
    }


.grid-container-sections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 50px);
    justify-content: center;
    /* Optional improvements */
    container-type: inline-size;
    contain: layout style paint;
}


.logo {
    width: 118px;
}

.logo-login {
    width: 14rem;
}

.search-box {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

a, .btn-link {
    color: var(--secondary-color);
}


    a:hover, .btn-link:hover {
        color: var(--secondary-color);
    }

.entry-thumbnail:hover {
    transform: scale(1.16);
}

.entry-thumbnail {
    object-fit: cover;
    transition: 0.4s cubic-bezier(0.1, 0, 0.17, 1);
}

.card-text a {
    color: #707070;
}

.card-text-wrap a {
    color: #707070;
}


video {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
    top: var(--banner-height)
}


.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.entry-details {
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-width: 0;
    width: 100%;
}

.entry-details-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    align-items: center;
}

.entry-details-panel-inner {
    /*    max-height: 50%;
    max-width: 60%;*/
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-content: center;
    width: 100%;
}

.custom-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
    padding: 5px;
    position: relative;
}

.more-details-icons {
    display: flex;
    justify-content: space-evenly;
}


.custom-text-muted {
    opacity: 0.2;
}

/*.top-content {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    height: auto;
    min-height: 0px;
    min-width:0px;
}*/

.top-content {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    height: auto;
    min-width: 0;
    width: 100%;
    margin-top: 10px;
    background-color: black;
}

.prize-overlay {
    position: absolute;
    top: 14.5px;
    right: 0;
    bottom: 0;
    left: 10px;
    height: 23px;
}

.prize-overlay-big {
    position: absolute;
    top: 120.4px;
    right: 0;
    bottom: 0;
    left: 0;
    padding-right: 61%;
    height: 50px;
}

.prize-overlay-player {
    right: 0;
    bottom: 0;
    left: 0;
    height: 50px;
}

.prize-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100%;
    width: 130px;
    white-space: nowrap;
    letter-spacing: .4px;
    border-radius: 0.15rem;
    line-height: 1.4rem;
    padding-left: 5px;
    padding-right: 5px;
}

.gold {
    background-color: #D1B002;
    color: black;
}

.silver {
    background-color: #D2D2D2; /*#B9BECE;*/
    color: black;
}

.bronze {
    background-color: #D7B07D;
    color: black;
}

.grand-prix {
    background-color: #000000;
}

.shortlist {
    background-color: #00F7F0;
    color: black;
}

.arrow-size {
    font-size: 2.5em;
}

.credit-icons-size {
    font-size: 1.6em;
}

.credits {
    font-size: 13px;
}

.entry-card-link {
    text-decoration: none;
}


@media screen and (min-width: 992px) {
    .some-class {
        max-width: 1168px;
    }
}

@media screen and (min-width: 768px) {
    .some-class {
        max-width: 960px;
    }
}

@media screen and (min-width: 576px) {
    .some-class {
        max-width: none;
    }
}

.nav-back {
    color: white;
    border-radius: 4px;
    /* height: 3rem; */
    display: flex;
    align-items: center;
    line-height: 2rem;
    cursor: pointer;
}

.filter-row {
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
    flex-direction: column;
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }



    .money-header {
        font-size: 3rem;
    }

    .credits {
        font-size: 16px;
    }
}


@media (min-width: 960px) {
    .entry-card {
        width: 280px;
    }

    .entry-card-list {
        padding: 50px;
    }

    .section-card {
        width: 280px;
    }
}

/* Custom styling for select input */
.custom-select {
    border-radius: 4px;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease;
}

    .custom-select:focus {
        border-color: #FF0059;
        box-shadow: 0 0 0 0.25rem rgba(255, 0, 89, 0.25);
        outline: none;
    }

/* Custom arrow styling */
.custom-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF0059' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;
}

    /* Hover effect */
    .custom-select:hover {
        border-color: #FF0059;
    }

    /* Option styling when dropdown is open */
    .custom-select option:checked,
    .custom-select option:hover {
        background-color: rgba(255, 0, 89, 0.1);
    }



.filter-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
    margin-bottom: 10px;
}

    .filter-row > div {
        flex: 1 1 200px;
    }
        /* Make a specific div smaller */
        .filter-row > div.smaller-item {
            flex: 0 1 100px; /* No grow, same shrink, smaller base width */
        }

/* Black modal content */
.modal-content {
    background-color: black;
    color: white;
    border: none; /* Remove default border */
}

.modal-backdrop.show {
    background-color: black !important;
    opacity: 0.8 !important;
}

.modal-header {
    border: none;
    margin-bottom: 10px;
}
    /* White close button for better visibility */
    .modal-header .btn-close {
        filter: invert(1); /* Makes the close button white */
    }

.navigation-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

/* Container needs to be relative for absolute positioning */
.content-container {
    position: relative;
    overflow: hidden;
}

body.overlay-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* The login overlay that covers the entire content */
.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent background */
    backdrop-filter: blur(6px); /* Creates the blur effect */
    -webkit-backdrop-filter: blur(6px); /* For Safari support */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Message box styling */
.login-message {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
    transform: translateY(calc(0vh - 50%)); /* This centers it in the viewport */
}

/* When user is logged in, we'll hide the overlay */
.logged-in .login-overlay {
    display: none;
}

@media (max-width: 576px) {
    .login-message {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .login-overlay {
        ustify-content: center;
        align-items: start;
        padding-top: 10px;
    }
}

.btn-money-primary {
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--primary-color);
    --bs-btn-bg: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-color: var(--primary-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: var(--secondary-color);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    font-weight: bold;
    border-radius: 10px;
    margin-top: 0.2rem;
    font-weight: 800;
    text-transform: inherit;
    white-space: nowrap;
    transition: none;
}


    .btn-money-primary:hover {
        outline: rgb(255, 0, 89) solid 0.2rem;
        outline-offset: 0.1rem;
        transition: outline 0.1s ease-in-out, outline-color 0.1s ease-in-out;
    }

.disabled-entry-card:hover {
    cursor: not-allowed;
}

.entry-card-container {
    cursor: pointer;
}

/* This will work whether it's Blazor or Bootstrap causing the issue */
h1:focus {
    outline: none !important;
}

@media only screen and (max-width: 700px) {

    .welcome-sub-header {
        max-width: 350px;
    }
}
