/* Main Layout Styles */

/* Preloader Styles */
.pre-loader-container {
    position: fixed;
    z-index: 1000000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: white;
    width: 100%;
    height: 100%;
}

.pre-loader {
    position: absolute;
    z-index: 1000000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    font-size: 20px;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

/* Custom sticky info banner */
.custom-sticky-info {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffc107;
    color: #212529;
    padding: 10px 20px;
    z-index: 1050;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-sticky-info p {
    margin: 0;
    font-weight: 500;
}

#btn_hide_soft_lunch_info {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    color: #212529;
}

#btn_hide_soft_lunch_info:hover {
    opacity: 0.7;
}
