body {
    font-family: 'Nunito Sans', sans-serif !important;
    background-image: url('https://pizzstermodding.com/cdn/shop/files/389.png?v=1691254276&width=1500');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
main {
    min-height: 87vh !important;
}
header {
    padding: 20px 50px !important;
    background-color: #ffffff !important;
}
header nav {
    max-width: 1100px !important;
}
footer {
    background-color: white !important;
    color: black !important;
    padding: 16px !important;
    border-top: 1px solid rgb(217, 217, 217) !important;
    font-size: 14px !important;
    font-weight: 200 !important;
}
header .logo {
    color: black;
    text-decoration: none;
    font-size: 24px;
    letter-spacing: .6px;
}
header ul {
    list-style: none !important;
    font-weight: 300 !important;
}
header ul li {
    padding: .75em 1em !important;
    font-size: 14px;
}
header ul a {
    color: black !important;
    text-decoration: none;
    display: flex !important;
    align-items: center !important;
}
header ul a:hover {
    text-decoration: underline;
}
header ul .icon {
    height: auto !important;
    width: 18px !important;
    margin-right: 10px !important;
    filter: brightness(0) !important;
}
.product-container {
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}
.product-image-container {
    position: relative !important;
}
.product-image-container img {
    height: auto !important;
    width: 100% !important;
    border-radius: 6px !important;
}
.product-image-container .product-image-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    width: 100% !important;
    background-color: black !important;
    border-radius: 6px !important;
    opacity: 0 !important;
    transition: opacity .11s !important;
    color: white !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}
.product-image-container .product-image-overlay img {
    height: auto !important;
    width: 24px !important;
    margin-right: 10px !important;
}
.product-container:hover .product-image-overlay {
    opacity: .8 !important;
}
.product-container h3 {
    font-size: 16px !important;
    color: black !important;
    font-weight: bold !important;
    margin-top: 16px !important;
}
dl, ol, ul {
    margin-bottom: 0 !important;
}

.login-form,
.account-form .col-md-6,
.upload-container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.product-image-container-outter {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.login-form {
    margin-inline: auto !important;
    width: 100% !important;
}
@media (min-width: 768px) {
    .login-form {
        width: 85% !important;
    }
}
@media (min-width: 992px) {
    .login-form {
        width: 65% !important;
    }
}
@media (min-width: 1200px) {
    .login-form {
        width: 55% !important;
    }
}
@media (min-width: 1400px) {
    .login-form {
        width: 45% !important;
    }
}

/* Estilo do Botão */
#loginButton {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo do Loader */
#loginLoader {
    border: 2px solid #f3f3f3; 
    border-top: 2px solid #198754;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

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

/* Estilo para esconder o texto do botão quando o loader estiver ativo */
.d-none {
    display: none;
}


.modal-dialog {
    max-width: 100%; /* Permite que o modal ocupe quase toda a largura */
    width: 90%; /* Define a largura em 90% */
}

.modal-content {
    max-height: 90vh; /* Limita a altura do modal */
    overflow-y: auto; /* Adiciona rolagem se necessário */
}

.table td, .table th {
    white-space: nowrap; /* Garante que os textos fiquem na mesma linha */
}

.table td input {
    width: 100%; /* Faz com que os campos ocupem toda a célula */
}