.mime-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.mime-modal-content {
  background: #fff;
  padding: 1.5rem;
  max-width: 400px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.mime-modal-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
#mime-delete-message {
  white-space: pre-line;
}
.hidden {
  display: none;
}
