#mplModal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.2s ease-in-out;
  }
  
  #mplModal .mpl-modal-content {
    background-color: #ffffff;
    margin: 8% auto;
    padding: 30px 25px;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
    position: relative;
  }
  
  #mplModal h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
  }
  
  #mplModal input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
  }
  
  #mplModal p#mplErrorMsg {
    color: red;
    font-size: 14px;
    margin: 5px 0 10px;
    display: none;
  }
  
  #mplModal .mpl-modal-buttons {
    text-align: right;
    margin-top: 15px;
  }
  
  #mplModal button {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
  }
  
  #mplModal #mplCancelar {
    background: #ddd;
    margin-right: 10px;
  }
  
  #mplModal #mplConfirmar {
    background: #005eff;
    color: white;
  }
  
  #mplModal #mplConfirmar:disabled {
    background: #b0c9ff;
    cursor: wait;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; } 
    to { transform: translateY(0); opacity: 1; }
  }
  

  .mpl-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid #999;
  border-radius: 50%;
  animation: mplSpin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes mplSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

