.modal-custom-content {
    background: #fff;
    border-radius: 12px;
    font-family: "Quicksand", sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    max-height: 350px;
  }
  
  .modal-custom-header {
    background-color: #FFBF12;
    padding: 15px 20px;
    color: #363636;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-custom-header .modal-title {
    margin: 0;
    font-size: 18px;
    color: #363636;
  }
  
  .modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    line-height: 1;
    padding: 0;
    cursor: pointer;
  }
  
  .modal-custom-body {
    padding: 20px;
    overflow-y: auto;
  }
  
  .modal-textarea {
    width: 100%;
    padding: 15px;
    font-family: "Quicksand", sans-serif;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    resize: vertical;
    box-sizing: border-box;
  }
  
  .modal-custom-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  

  .modal-custom-cta {
    font-size: 12px !important;
  }