/* Arquivo temporário para aplicar as alterações do formulário de pedido detalhado */

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

/* Header do modal - cor azul NGC */
.modal-header {
    background: #204b9b !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(32, 75, 155, 0.3);
}

/* Botão adicionar produto - cor laranja NGC */
.btn-add-simple {
    background: #f07e13 !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: #70b73e !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(112, 183, 62, 0.3);
}

/* Botão enviar pedido - cor laranja NGC */
.btn-enviar-simple {
    background: #f07e13 !important;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    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: #70b73e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 183, 62, 0.4);
}

/* Total do pedido - cor cinza escuro */
.total-valor {
    font-size: 20px;
    font-weight: bold;
    color: #333333 !important;
}
