#widget-container {
    margin: 0px;
    margin-bottom: 40px;
  }
  

  .modal {
    display: none;
    position: fixed !important;
    z-index: 10000 !important;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
} 

.modal-content {
    background-color: #fefefe !important;
    margin: auto;
    padding: 20px;
    border: 2px solid #000080 !important;
    border-radius: 8px !important;
    width: 80% !important;
    max-width: 400px !important;
    position: fixed !important;
    top: 50%;         
    left: 50%;        
    transform: translate(-50%, -50%);
}

.modal-content p {
    font-size: calc(14px + 2vmin) !important;
}


