/* /Components/Account/Pages/Login.razor.rz.scp.css */
.login-page .content[b-k2yvwkd868] {
    padding-top: 0;
}

.login-container[b-k2yvwkd868] {
    display: flex;
    height: 100%;
    width: 100%;
    max-height: 100vh;
}

.login-left-column[b-k2yvwkd868] {
    flex: 1;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    position: relative;
    max-height: 100%;
}

.login-content[b-k2yvwkd868] {
    width: 100%;
    padding-top: 60px;
    max-width: 400px;
    max-height: 100%;
}

.login-header[b-k2yvwkd868] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo[b-k2yvwkd868] {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.login-header h1[b-k2yvwkd868] {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.login-footer[b-k2yvwkd868] {
    text-align: center;
    padding-top: 150px;
    color: #666;
    font-size: 0.9rem;
}

.login-right-column[b-k2yvwkd868] {
    flex: 1;
    background-color: #ffffff;
    height: 100%;
    max-height: 100%;
}

.login-image[b-k2yvwkd868] {
    width: 100%;
    height: 100%;
}

.background-image[b-k2yvwkd868] {
    width: 100%;
    height: 100%;
    background-image: url('assets/login-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Se preferir usar tag img em vez de background */
.login-image img.background-image[b-k2yvwkd868] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-footer[b-k2yvwkd868] {
        text-align: center;
        padding-top: 90px;
        color: #666;
        font-size: 0.9rem;
    }

    .login-container[b-k2yvwkd868] {
        flex-direction: column;
    }

    .login-right-column[b-k2yvwkd868] {
        display: none; /* Esconde completamente a coluna da imagem */
    }

    .login-content[b-k2yvwkd868] {
        min-height: auto;
        padding: 1.5rem;
    }

    .login-right-column[b-k2yvwkd868] {
        order: 1;
        height: 300px;
    }

    .login-form-section[b-k2yvwkd868] {
        justify-content: flex-start;
    }
}

/* Estilos existentes para o botão laranja */
.btn-laranja[b-k2yvwkd868] {
    background-color: #f39200;
    color: white; /* texto branco para contraste */
    border: none;
}

/* Ajustes para os formulários */
.form-floating[b-k2yvwkd868] {
    position: relative;
    margin-bottom: 1rem;
}

.form-control[b-k2yvwkd868] {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem 0.75rem;
}

    .form-control:focus[b-k2yvwkd868] {
        border-color: #f39200;
        box-shadow: 0 0 0 0.2rem rgba(243, 146, 0, 0.25);
    }

.alert[b-k2yvwkd868] {
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.checkbox[b-k2yvwkd868] {
    display: flex;
    align-items: center;
}

.darker-border-checkbox[b-k2yvwkd868] {
    border: 2px solid #dee2e6;
    margin-right: 0.5rem;
}
/* /Components/Account/Pages/Manage/ChangePassword.razor.rz.scp.css */
.btn-laranja[b-r971nzuhm2] {
    background-color: #f39200;
    color: white; /* texto branco para contraste */
    border: none;
}
/* /Components/Account/Pages/Manage/Index.razor.rz.scp.css */
.btn-laranja[b-0dzgwyn7lu] {
    background-color: #f39200;
    color: white; /* texto branco para contraste */
    border: none;
}
/* /Components/Account/Shared/ManageNavMenu.razor.rz.scp.css */
/* Classe base para o link de navegação */
.nav-item[b-8no5152ogb]  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem; /* Bordas arredondadas */
    text-decoration: none;
    color: orange; /* Texto laranja padrão */
    background-color: white; /* Fundo branco padrão */
    transition: all 0.3s ease;
    margin-bottom: 0.3rem;
}

    /* Quando o link estiver ativo */
    .nav-item[b-8no5152ogb]  .nav-link.active {
        color: white; /* Texto branco */
        background-color: orange; /* Fundo laranja */
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
html[b-rqvr750aat], body[b-rqvr750aat] {
    height: 100%;
    margin: 0;
}

.login-page[b-rqvr750aat] {
    height: 100%;
}

.page[b-rqvr750aat] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header[b-rqvr750aat] {
    background-color: white;
    border-bottom: 1px solid #f39200;
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: sticky;
    top: 0;
    z-index: 2;
}

.header-content[b-rqvr750aat] {
    display: flex;
    align-items: center;
    width: 100%;
}

.brand-logo[b-rqvr750aat] {
    height: 2rem;
    width: auto;
    margin-right: 0.5rem;
}

.app-title[b-rqvr750aat] {
    font-size: 1.1rem;
    color: currentColor;
}

.layout-container[b-rqvr750aat] {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.footer[b-rqvr750aat] {
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: #666;
    margin-top: auto;
}

main[b-rqvr750aat] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar[b-rqvr750aat] {
    background-color: white;
}

.top-row[b-rqvr750aat] {
    background-color: white;
    border-bottom: 1px solid #f39200;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-rqvr750aat]  a, .top-row[b-rqvr750aat]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-rqvr750aat]  a:hover, .top-row[b-rqvr750aat]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-rqvr750aat]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-rqvr750aat] {
        justify-content: space-between;
    }

        .top-row[b-rqvr750aat]  a, .top-row[b-rqvr750aat]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .layout-container[b-rqvr750aat] {
        flex-direction: row;
    }

    .sidebar[b-rqvr750aat] {
        width: 250px;
        height: calc(100vh - 3.5rem);
        position: sticky;
        top: 3.5rem;
    }

    .top-row[b-rqvr750aat] {
        position: sticky;
        top: 3.5rem;
        z-index: 1;
    }

        .top-row.auth[b-rqvr750aat]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-rqvr750aat], article[b-rqvr750aat] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-rqvr750aat] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-rqvr750aat] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.layout-container:has(.sidebar:empty)[b-rqvr750aat] {
    flex-direction: column !important;
}

.layout-container:not(:has(.sidebar)) main[b-rqvr750aat] {
    width: 100%;
}

/* Ajuste para telas grandes quando n�o h� sidebar */
@media (min-width: 641px) {
    .layout-container:not(:has(.sidebar)) main[b-rqvr750aat] {
        margin-left: 0;
        width: 100%;
    }

    .layout-container:has(.sidebar:empty) main[b-rqvr750aat] {
        margin-left: 0;
        width: 100%;
    }
}

/* Ajuste para o conte�do quando n�o h� sidebar */
.layout-container:not(:has(.sidebar)) .content[b-rqvr750aat] {
    width: 100%;
    max-width: 100%;
}

.login-page .top-row[b-rqvr750aat],
.login-page article[b-rqvr750aat] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important
}


/* Adicione estas regras ao seu CSS existente */

.header-logos-container[b-rqvr750aat] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.main-logo-link[b-rqvr750aat] {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.second-logo[b-rqvr750aat] {
    height: 2rem;
    width: auto;
}

/* Ajustes para mobile */
@media (max-width: 640.98px) {
    .header-content[b-rqvr750aat] {
        padding-right: 3.5rem; /* Espa�o para o menu hamburguer */
    }

    .second-logo[b-rqvr750aat] {
        height: 1.8rem; /* Um pouco menor no mobile */
        margin-right: 0.5rem;
    }

    .header-logos-container[b-rqvr750aat] {
        justify-content: space-between;
        padding-right: 0;
    }

    .app-title[b-rqvr750aat] {
        font-size: 1rem; /* Tamanho menor no mobile */
    }

    .brand-logo[b-rqvr750aat] {
        height: 1.8rem; /* Tamanho consistente com a segunda logo */
    }
}

/* Ajustes para desktop */
@media (min-width: 641px) {
    .second-logo[b-rqvr750aat] {
        margin-left: auto;
    }
}





/* Adicione estas regras ao seu CSS existente */

.header-logos-container[b-rqvr750aat] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.main-logo-link[b-rqvr750aat] {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.second-logo[b-rqvr750aat] {
    height: 2rem;
    width: auto;
}

/* Ajustes para mobile */
@media (max-width: 640.98px) {
    .header-content[b-rqvr750aat] {
        padding-right: 3.5rem; /* Espa�o para o menu hamburguer */
    }

    .second-logo[b-rqvr750aat] {
        height: 1.8rem; /* Um pouco menor no mobile */
        margin-right: 0.5rem;
    }

    .header-logos-container[b-rqvr750aat] {
        justify-content: space-between;
        padding-right: 0;
    }

    .app-title[b-rqvr750aat] {
        font-size: 1rem; /* Tamanho menor no mobile */
    }

    .brand-logo[b-rqvr750aat] {
        height: 1.8rem; /* Tamanho consistente com a segunda logo */
    }
}

/* Ajustes para desktop */
@media (min-width: 641px) {
    .second-logo[b-rqvr750aat] {
        margin-left: auto;
    }
}
/* /Components/Layout/MenuLayout.razor.rz.scp.css */
body[b-v8alrm4d7h] {

}

html[b-v8alrm4d7h] {
    scroll-behavior: smooth;
}

.menu-layout[b-v8alrm4d7h] {
    background-image: url('assets/bg.png');
    background-size: cover; /* faz a imagem cobrir todo o ecrã */
    background-position: center; /* centra a imagem */
    background-repeat: no-repeat; /* evita repetições */
    min-height: 100vh;
    color: #E29160;
    font-family: 'ABeeZee', sans-serif;
}

/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-menu-container[b-cux79sixka] {
    height: 100%;
}

/* Navbar Toggler */
.navbar-toggler[b-cux79sixka] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: currentColor;
    border: 1px solid rgba(23,43,67,0.2);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(23,43,67,0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255,255,255,0.1);
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

    .navbar-toggler:checked[b-cux79sixka] {
        background-color: rgba(243,146,0,0.2);
    }

/* �cones */
.bi[b-cux79sixka] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
    transition: filter 0.3s;
}

/* Navbar Links */
.nav-item[b-cux79sixka] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-cux79sixka] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-cux79sixka] {
        padding-bottom: 1rem;
    }

    .nav-item[b-cux79sixka]  .nav-link {
        color: currentColor;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
        transition: all 0.3s;
    }

        /* Hover e ativo */
        .nav-item[b-cux79sixka]  .nav-link:hover,
        .nav-item[b-cux79sixka]  .nav-link.active {
            color: #f39200;
            border-left: 3px solid #f39200;
            padding-left: 0.75rem;
            background-color: rgba(243,146,0,0.1);
        }

            .nav-item[b-cux79sixka]  .nav-link:hover span.bi,
            .nav-item[b-cux79sixka]  .nav-link.active span.bi {
                color: inherit;
                filter: none;
            }

/* Nav scrollable */
.nav-scrollable[b-cux79sixka] {
    background-color: #ffffff;
    height: 100%;
}

/* Media queries - Mobile */
/* Modifique estas regras no NavMenu.css */

@media (max-width: 640.98px) {
    .navbar-toggler[b-cux79sixka] {
        display: block;
        z-index: 1000;
        position: fixed; /* Mudei de absolute para fixed */
        top: 0.5rem;
        right: 1rem;
    }

    .nav-scrollable[b-cux79sixka] {
        display: none;
        position: fixed; /* Mudei de absolute para fixed */
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        z-index: 999;
        border-right: 1px solid #f39200;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin-top: 3.5rem;
        height: calc(100vh - 3.5rem);
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-cux79sixka] {
        display: block;
    }
}

/* Media queries - Desktop */
@media (min-width: 641px) {
    .navbar-toggler[b-cux79sixka] {
        display: none;
    }

    .nav-scrollable[b-cux79sixka] {
        display: block;
        height: 100%;
        overflow-y: auto;
    }
}
/* /Components/Pages/Categorias.razor.rz.scp.css */
.self-end[b-y3od1az6dr] {
    place-self: end;
}

input[type="checkbox"][b-y3od1az6dr] {
    width: 20px;
    height: 20px;
}

.btn-laranja[b-y3od1az6dr] {
    background-color: #f39200;
    color: white; /* texto branco para contraste */
    border: none;
}

.btn-outline-laranja[b-y3od1az6dr] {
    background-color: white;
    border-color: #f39200;
    color: #f39200;
}

    .btn-outline-laranja:hover[b-y3od1az6dr] {
        background-color: #f39200;
        color: white; /* texto branco para contraste */
        border-color: #f39200;
    }
/* /Components/Pages/EditEmentas.razor.rz.scp.css */
.self-end[b-t5p9q4098u] {
    place-self: end;
}

input[type="checkbox"][b-t5p9q4098u] {
    width: 20px;
    height: 20px;
}

.btn-laranja[b-t5p9q4098u] {
    background-color: #f39200;
    color: white; /* texto branco para contraste */
    border: none;
}

.btn-outline-laranja[b-t5p9q4098u] {
    background-color: white;
    border-color: #f39200;
    color: #f39200;
}

    .btn-outline-laranja:hover[b-t5p9q4098u] {
        background-color: #f39200;
        color: white; /* texto branco para contraste */
        border-color: #f39200;
    }
/* /Components/Pages/Menu.razor.rz.scp.css */
.categoria-card.ativa[b-yyrzbj0zul] {
    background-color: #E29160;
    font-weight: bold;
    color: white;
}

.modal-content.modal-no-image[b-yyrzbj0zul] {
    padding-top: 50px !important;
}

.language-selector[b-yyrzbj0zul] {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.language-dropdown[b-yyrzbj0zul] {
    background-color: #3F4B4A;
    color: #E29160;
    border: 2px solid #E29160;
    padding: 8px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

    .language-dropdown:hover[b-yyrzbj0zul] {
        background-color: #E29160;
        color: white;
    }

    .language-dropdown:focus[b-yyrzbj0zul] {
        border-color: #25635F;
    }

.ultima-categoria[b-yyrzbj0zul] {
    padding-bottom: 60px;
}

.menu-home[b-yyrzbj0zul] {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 10px;
}

.menu-logo[b-yyrzbj0zul] {
    width: 60%;
    max-width: 600px;
    height: auto;
}

.background-navbar[b-yyrzbj0zul] {
    height: 70px;
    background-color: #3F4B4A;
    display: grid;
    align-items: center;
    border-top: solid #E29160;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.categorias-grid[b-yyrzbj0zul] {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    margin-left: 30px;
    margin-right: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categoria-card[b-yyrzbj0zul] {
    min-width: 135px; 
    height: 40px;
    border: 2px solid #E29160;
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    font-size: 1.2rem;
    color: #E29160; 
    transition: transform 0.2s ease;
    flex-shrink: 0; 
}

    .categoria-card:hover[b-yyrzbj0zul] {
        color: white;
        background-color: #E29160;
        cursor: pointer;
    }

    .categoria-card:active[b-yyrzbj0zul] {
        color: white;
        background-color: #E29160;
    }

.categorias-lista[b-yyrzbj0zul] {
    margin-top: 30px;
    margin-left: 30px;
}

.categoria-item[b-yyrzbj0zul] {
    color: #E29160;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.menus-container[b-yyrzbj0zul] {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

    .menus-container:hover[b-yyrzbj0zul] {
        cursor:pointer;
    }

.menu-card[b-yyrzbj0zul] {
    width: 98%;
    height: 100px;
    border: 2px solid #E29160;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom:10px;
}

.menu-info[b-yyrzbj0zul] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-grow: 1;
    justify-content: space-between;
    gap: 10px;
}

.menu-text[b-yyrzbj0zul] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-descricao[b-yyrzbj0zul] {
    color: #E29160;
    font-size: 0.8rem;
    line-height: 1.2;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 60%;
    font-style: italic;
}

.menu-nome[b-yyrzbj0zul] {
    color: #E29160;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-preco[b-yyrzbj0zul] {
    color: #E29160;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
}

.menu-imagem[b-yyrzbj0zul] {
    min-width: 80px;
    min-height: 80px;
    width: 80px;
    height: 80px;
    margin-left: 1rem;
}

    .menu-imagem img[b-yyrzbj0zul] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* Modal Styles */
.modal-overlay[b-yyrzbj0zul] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;

    overflow-y: auto;
    padding: 20px;
}

.modal-content[b-yyrzbj0zul] {
    position: relative;
    background-color: white;
    width: 90%;
    max-width: 500px;
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close[b-yyrzbj0zul] {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-close:hover[b-yyrzbj0zul] {
        background: rgba(0, 0, 0, 0.7);
    }

.modal-image[b-yyrzbj0zul] {
    width: 100%;
    max-height:400px;
    height: auto;
    display: block;
}

.modal-nome[b-yyrzbj0zul] {
    text-align: center;
    color: #E29160;
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 15px;
    padding-top:15px;
}

.modal-descricao[b-yyrzbj0zul] {
    text-align: center;
    color: #25635F;
    font-size: 1rem;
    padding: 15px 20px;
    margin: 0;
    line-height: 1.4;
}

.modal-alergenicos[b-yyrzbj0zul] {
    margin: 10px 20px 20px 20px;
    text-align: left;
}

.alergenicos-titulo[b-yyrzbj0zul] {
    color: #E29160;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 8px;
}

.alergenicos-lista[b-yyrzbj0zul] {
    color: #25635F; 
    font-size: 0.95rem;
    line-height: 1.4;
}


/*Tabela modal*/
.modal-tabela[b-yyrzbj0zul] {
    margin: 20px auto;
    width: 80%;
    border: 2px solid #E29160;
    border-collapse: collapse;
    text-align: center;
    table-layout: fixed; 
}

    .modal-tabela th[b-yyrzbj0zul],
    .modal-tabela td[b-yyrzbj0zul] {
        border: 1px solid #E29160;
        padding: 10px;
        width: 50%; 
    }

    .modal-tabela th[b-yyrzbj0zul] {
        color: #E29160;
        font-weight: bold;
        font-size: 1rem;
    }

    .modal-tabela td[b-yyrzbj0zul] {
        color: #25635F;
        font-size: 0.95rem;
    }

/*ScrollBar*/

.scrollbar[b-yyrzbj0zul] {
    height: 100vh;
    overflow-y: auto;
}

    .scrollbar[b-yyrzbj0zul]::-webkit-scrollbar {
        width: 8px;
    }

    .scrollbar[b-yyrzbj0zul]::-webkit-scrollbar-track {
        background: #eeeeee;
    }

    .scrollbar[b-yyrzbj0zul]::-webkit-scrollbar-thumb {
        background: #e29160;
    }


/* Scrollbar do modal */
.modal-content[b-yyrzbj0zul]::-webkit-scrollbar {
    width: 8px;
}

.modal-content[b-yyrzbj0zul]::-webkit-scrollbar-track {
    background: #eeeeee;
}

.modal-content[b-yyrzbj0zul]::-webkit-scrollbar-thumb {
    background: #e29160;
}

@media (max-width: 768px) {
    .categorias-grid[b-yyrzbj0zul] {
        margin-left: 10px;
        margin-right: 10px;
    }

    .categorias-lista[b-yyrzbj0zul] {
        margin-left: 10px;
    }

    .language-dropdown[b-yyrzbj0zul] {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 425px) {
    .background-navbar[b-yyrzbj0zul] {
        height: 50px;
        background-color: #3F4B4A;
        display: grid;
        align-items: center;
        border-top: solid #E29160;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 1000;
    }

    .categoria-card[b-yyrzbj0zul] {
        min-width: 135px;
        height: 30px;
        border: 2px solid #E29160;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 1.2rem;
        color: #E29160;
        transition: transform 0.2s ease;
        flex-shrink: 0;
    }

    /*Modal Menu*/
    .modal-nome[b-yyrzbj0zul] {
        padding-bottom: 0px; 
    }

    .modal-descricao[b-yyrzbj0zul] {
        font-size: 0.8rem;
    }

    .alergenicos-lista[b-yyrzbj0zul] {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .language-selector[b-yyrzbj0zul] {
        position: absolute;
        top: 20px;
        right: 10px;
        text-align: right;
        margin-bottom: 10px;
        padding: 0 10px;
    }
}
/* /Components/Pages/Utilizadores.razor.rz.scp.css */
.self-end[b-t3c21wpz1z] {
    place-self: end;
}

input[type="checkbox"][b-t3c21wpz1z] {
    width: 20px;
    height: 20px;
}

.btn-laranja[b-t3c21wpz1z] {
    background-color: #f39200;
    color: white; /* texto branco para contraste */
    border: none;
}

.btn-outline-laranja[b-t3c21wpz1z] {
    background-color: white;
    border-color: #f39200;
    color: #f39200;
}

    .btn-outline-laranja:hover[b-t3c21wpz1z] {
        background-color: #f39200;
        color: white; /* texto branco para contraste */
        border-color: #f39200;
    }
