body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 1rem 2rem;
}

.mobilenav {
    display: none;
}

.nav {
    display: block;
}

@media (max-width: 1300px) {
    .mobilenav {
        display: block;
    }
    .nav {
        display: none;
    }
    .login-header {
        display: none;
    }
}

/* .mobilenav {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} */

.toggle-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: block;
    z-index: 1001;
}

.toggle {
    display: none !important;
}

.mobilebuttons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 3rem;
}

.mobilebuttons wa-button {
    width: 100%;
    justify-content: flex-start;
    padding-left: 1rem;
}

.mobilebuttons wa-button::part(start) {
    position: absolute;
    left: 65px;
    text-align: left;
}

.login-card {
    width: auto;
    margin: 2rem;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
}

.login-card wa-button {
    margin-top: 1rem;
    width: 100%;
}

wa-input {
    margin-bottom: 1rem;
    width: 100%;
}

wa-callout {
    margin-bottom: 1rem;
    cursor: pointer;
}

.nav {
    margin: 0.5rem;
    /* padding: 0.5rem; */
    font-size: large;
}

/* .nav a {
    margin-right: 1rem;
    color: #333;
}
.nav a:hover {
    text-decoration: underline;
} */

.fullscreen_spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 3ms ease-in-out;
    background-color: #f4f4f4;
    z-index: 9999;
}

.fullscreen_spinner::after {
    content: " ";
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 4px solid #0078d4;
    border-color: #0078d4 transparent transparent transparent;
    animation: spinner 1.2s infinite;
}

.fullscreen_spinner.fadeout {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1300px) {
    .scroller {
        position: absolute;
        left: 0;
        padding: 5px;
    }
    .scroller table tr th {
        min-width: 12rem;
    }
}

.basket-edit {
    position: relative;
    float: right;
    /* margin-top: -2.5rem; */
}

iframe {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 80%;
    display: flex;
    margin: 1rem auto;
    height: 500px;
}

.rankimg {
    height: 2rem;
    vertical-align: middle;
}

#edit-round wa-select {
    width: 100%;
    margin-bottom: 1rem;
}