body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 24px;
}

.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(107, 173, 30, 0.1);
}

.search-bar {
    margin-bottom: 20px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Sombra leve */
    transition: box-shadow 0.3s ease; /* Suaviza a transição ao passar o mouse */
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.product {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.product img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

.product h3 {
    font-size: 18px;
    margin: 10px 0;
}

.product p {
    color: #555;
    font-size: 14px;
}

.product span {
    font-weight: bold;
    color: #e20000;
    line-height: 40px;
    font-size: 20px;
}

/* Total Container */
#total-container {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    color: #333;
}

/* Flexbox for Buttons */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
}

button {
    justify-content: center;
    width: 100px;
    height: 40px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra leve */
    transition: box-shadow 0.3s ease; /* Suaviza a transição ao passar o mouse */
}

.action-buttons {
    display: flex; /* Torna o contêiner flexível */
    flex-wrap: wrap; /* Permite que os botões quebrem para a próxima linha se necessário */
    justify-content: center; /* Centraliza os botões horizontalmente */
    gap: 10px; /* Espaço uniforme entre os botões */
    padding: 15px;
    background: white;
    border-top: 1px solid #ccc;
}

.action-buttons button {
    width: 150px; /* Define largura uniforme */
    height: 40px; /* Define altura uniforme */
    font-size: 14px; /* Tamanho consistente do texto */
    text-align: center;
    border-radius: 5px; /* Bordas arredondadas */
    cursor: pointer;
    border: none; /* Remove borda padrão */
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra leve */
    transition: box-shadow 0.3s ease; /* Suaviza a transição ao passar o mouse */
}

/* Estilo específico para cada botão */
#clearList {
    background-color: #ff0000; /* Vermelho */
    color: white;
}

#clearList:hover {
    background-color: #cc0000; /* Vermelho mais escuro ao passar o mouse */
}

#sendToWhatsApp {
    background-color: #28a745; /* Verde */
    color: white;
}

#sendToWhatsApp:hover {
    background-color: #218838; /* Verde mais escuro ao passar o mouse */
}

#viewList {
    background-color: #ffc107; /* Amarelo */
    color: white;
}

#viewList:hover {
    background-color: #e0a800; /* Amarelo mais escuro ao passar o mouse */
}


/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-top: 10px;
}

.filter-buttons button {
    width: 120px;
    height: 40px;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra leve */
    transition: box-shadow 0.3s ease; /* Suaviza a transição ao passar o mouse */
}

.filter-buttons button:hover {
    background-color: #0056b3;
    
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgb(113, 198, 219);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

#list-content {
    margin-bottom: 20px; /* Espaço entre a lista e o botão */
}

.close-btn {
    background: red;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Suaviza a transição de hover */
}

.close-btn:hover {
    background-color: #cc0000; /* Vermelho mais escuro */
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
input[type="number"] {
    height: 30px; /* Define a altura igual à do botão */
    font-size: 15px; /* Ajusta o tamanho do texto */
    padding: 5px; /* Adiciona espaçamento interno */
    border: 1px solid #ccc; /* Define a borda */
    border-radius: 5px; /* Bordas arredondadas para harmonizar com o botão */
    text-align: center; /* Centraliza o texto dentro do campo */
    width: 40px; /* Mantém uma largura fixa apropriada */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra leve */
    transition: box-shadow 0.3s ease; /* Suaviza a transição ao passar o mouse */
    
}

