﻿* {
   
    scroll-behavior: smooth;
    text-transform: uppercase;
    overflow:hidden;
}

.all {
    margin: 10px auto;
    max-width: 100%;
    width:auto;
    background: white;
    padding: 10px 10px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    height: 94vh;
    overflow: hidden;
    position:fixed;
    

    /*   margin: 10px auto;
    max-width: auto;
    background: white;
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    height: auto;
    display: grid;
    place-items: center;
    overflow: hidden;*/
}


.waiter {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    z-index: 9999; /* higher than any other element */
    pointer-events: all; /* ensures it captures all clicks */
}

.spinner {
    width: 24px;
    height: 24px;
    border: 4px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    pointer-events: all;
    margin: 3px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.logo {
    width: 100px;
    height: auto;
    margin: 5px 5px;
    border-radius: 12px;
}


.mybtn {
    width: 100px;
    height: 40px;
    background: darkgreen;
    border-radius: 12px;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
