/* Arquivo temporário para aplicar as alterações do formulário de pedido detalhado */
/* PALETA ULTRAGAZ - Atualizado 08/10/2025 */

/* ALTERAÇÕES PARA O FORMULÁRIO DE PEDIDO DETALHADO */

/* Header do modal - cor azul Ultragaz */
.modal-header {
    background: #000FFF !important;
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 2px 10px rgba(0, 15, 255, 0.3);
}

/* Botão adicionar produto - cor azul Ultragaz */
.btn-add-simple {
    background: #000FFF !important;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
}

.btn-add-simple:hover {
    background: #00FFFF !important;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

/* Botão enviar pedido - gradiente verde-ciano Ultragaz */
.btn-enviar-simple {
    background: linear-gradient(90deg, #00FF00, #00FFFF) !important;
    color: #000000 !important;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
}

.btn-enviar-simple:hover {
    background: #00FF00 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

/* Total do pedido - cor verde Ultragaz */
.total-valor {
    font-size: 20px;
    font-weight: bold;
    color: #00FF00 !important;
}
