        :root {
            --primary-color: #4CAF50;
            --primary-hover: #45a049;
            --background-color: #f5f5f5;
            --card-background: #ffffff;
            --border-radius: 8px;
            --shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--background-color);
            padding: 20px;
        }

        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        header .logo {
            flex: 0 0 150px;
        }

        header .logo img {
            max-width: 100%;
            height: auto;
        }

        header form {
            flex: 1;
            margin: 0 30px;
        }

        header form input[type="text"] {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
        }

        header form input[type="text"]:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 8px rgba(76,175,80,0.3);
        }

        #btnCadastrar {
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        #btnCadastrar:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 10px;
            background-color: transparent;
        }

        th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 500;
        }

        th:first-child {
            border-top-left-radius: var(--border-radius);
        }

        th:last-child {
            border-top-right-radius: var(--border-radius);
        }

        td {
            padding: 15px;
            background-color: white;
        }

        tr:not(:first-child) {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        tr:not(:first-child):hover {
            background-color: rgba(76, 175, 80, 0.1);
        }

        tr:not(:first-child):hover td {
            background-color: rgba(76, 175, 80, 0.1);
        }

        td input[type="text"] {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            font-size: 14px;
            background-color: white;
            box-shadow: var(--shadow);
        }

        td img {
            width: 50px;
            height: 50px;
            border-radius: 4px;
            object-fit: cover;
        }

        .modal {
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            display: none;
            min-width: 300px;
        }

        .modal input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
        }

        .modal button {
            width: 100%;
            padding: 12px;
            margin: 5px 0;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 500;
            color: white;
        }

        .btn-verde {
            background-color: var(--primary-color);
        }

        .btn-azul {
            background-color: #2196F3;
        }

        .btn-cinza {
            background-color: #9e9e9e;
        }

        #carrinho {
            position: fixed;
            right: 20px;
            bottom: 20px;
            background: white;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            min-width: 300px;
        }

        .carrinho-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 15px;
            }

            header form {
                margin: 15px 0;
                width: 100%;
            }

            #btnCadastrar {
                width: 100%;
            }

            #carrinho {
                width: 90%;
                right: 5%;
                bottom: 10px;
            }
        }
		
		

.cupom-fiscal {
    background-color: #fff8dc;
    padding: 20px;
    font-family: monospace;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    border-radius: 5px;
}

.cupom-fiscal h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.cupom-fiscal p {
    font-size: 12px;
    margin: 5px 0;
    white-space: pre-line;
}

.itens-cupom {
    text-align: left;
    margin: 10px 0;
}

#modalCupom {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff8dc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
}		



.botoes-cupom {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#numeroWhatsapp {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 14px;
}

header button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.botoes-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Aplica o mesmo estilo a todos os botões dentro de .botoes-container */
.botoes-container button {
    background-color: #4CAF50; /* Ajuste para a cor que está usando no #btnCadastrar */
    color: #fff;
    border: none;
    border-radius: 20px; /* Mesmo arredondamento utilizado no #btnCadastrar */
    font-size: 16px; /* Ajuste para o mesmo tamanho de fonte do #btnCadastrar */
    padding: 10px 20px; /* Ajuste conforme o botão #btnCadastrar */
    margin-bottom: 5px; /* Espaço entre os botões */
    cursor: pointer;
    transition: background-color 0.3s;
}

.botoes-container button:hover {
    background-color: #45a049; /* Efeito hover igual ao do #btnCadastrar */
}
