.dialog-type4 {
  background: white;
  padding: 15px 25px;
  border-radius: 5px;
  max-width: 80vw;
  max-height: 80vh;
  text-align: left;
  z-index: 1000;
  position: fixed;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  
}

.dialog-type4 .message-container {
  font-size: 1rem;
}

/* Hide dialog-type4 on screens 1366px and wider */
@media (min-width: 1366px) {
  .dialog-type4 {
    display: none;
  }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1365px) {
  .dialog-type4 {
    max-width: 90vw;
    padding: 10px 20px;
    font-size: 12px;
  }
}