﻿/*
	Edit-Dialog
*/

.dlg-file-edit {
  display: grid;
  grid-template-rows: auto minmax(560px, auto) auto;
  width: calc(100vw - 2rem);
  max-height: 100vh;
  max-width: 1200px;
}

/* Bearbeiten Dialog */
.dlg-file-edit .modal-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3em;
}

.dlg-file-edit .batch-info {
  margin-left: 2em;
}

.dlg-file-edit table {
	width: 100%;
  margin-top: 3.1em;
  line-height: 1.5;
  border-collapse: collapse;
}

.dlg-file-edit table :is(th, td) {
  text-align: left;
  vertical-align: top;
  padding-block: 0.33em;
  border-width: 1px 0;
  border-style: solid;
  border-color: var(--slateA5);
}

.dlg-file-edit table th {
  padding-right: 1rem;
	font-weight: 500;
}

#dlg-video-edit {
	grid-template-rows: auto minmax(auto, 640px) auto;
}

.dlg-file-edit table img {
  margin: .4rem 0 .2rem 0;
}

.dlg-file-edit table .preview-image :is(th, td) {
    padding-right: 0;
}

.dlg-file-edit form {
  padding-bottom: 2rem;
}