.login_required
{
    pointer-events: none;
    opacity: 0.4;
}



 .ui-dialog {
      max-width: 90% !important; /* Ensure dialog doesn't exceed viewport width */
      position: fixed !important; /* Ensure it stays within the viewport */
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
    }
    
    .ui-dialog-content {
        overflow: auto; /* Enable scrolling for content that overflows */
    }

    
    
    .col-md-4{
        width:20%!important;
    }
    
    
    table{
        font-size: 20px;
    }
    
    
    
    .dialog-header
    {
        width:100%;
        min-width: 20px;
        background-color: #535ba0;
        color: white;
        font-size: 24px;
        padding: 15px 10px 15px 10px;
    }
    
    
    
    .img-resize {
        margin: 0 auto;
    width:320px; /* you can use % */
    height: auto;
}
    
    
    
    /* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 2px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 2px;
  background-color: white;
  display: none;
  overflow: hidden;
}