@charset "UTF-8";
.sm-input {
  max-width: 80px;
}

.md-input {
  min-width: 120px;
}

.lg-input {
  min-width: 250px !important;
}

#navigation {
  width: 100%;
}

.user-box {
  display: flex;
  flex-direction: row;
  justify-content: baseline;
  align-items: center;
  gap: 10px;
}
.user-box #logout-btn {
  padding-right: 15px;
}

#customerNrContainer {
  display: none;
}

#previewFrame {
  width: 100%;
  height: 800px;
}

.edit-controls button {
  margin-left: 5px;
}

.category-admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subitem-admin {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-check-label.editable:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

.modal {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.toast {
  bottom: 30px;
  right: 30px;
}

.toast {
  z-index: 9999;
}

#previewModalBtn {
  border-radius: 50%;
  height: 55px;
  width: 55px;
  position: fixed;
  z-index: 99;
  left: 1.2vw;
  bottom: 25px;
  font-size: 22px;
}

.dt-layout-table {
  overflow-x: scroll;
}

.custom-btn-red {
  background-color: #cc0000;
  color: #fff;
  border: none;
  padding: 6px;
  border-radius: 8px;
  transition: background-color 0.6s ease, color 0.6s ease;
  position: relative;
  overflow: hidden;
  border: solid 1px #cc0000;
}
.custom-btn-red:hover {
  color: #cc0000;
  background-color: #fff;
}
.custom-btn-red:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: left 0.3s ease;
  z-index: -1;
}
.custom-btn-red:hover:before {
  left: 0;
}

.login-form {
  max-width: 60%;
}

.editor-container {
  position: relative;
  width: 100%;
  height: 300px;
}
.editor-container .ss-container {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border-radius: 5px;
}
.editor-container .ss-container .codeDiv,
.editor-container .ss-container .linesDiv,
.editor-container .ss-container textarea {
  font-family: monospace;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 5px;
}
.editor-container .ss-container .codeDiv {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 0 0 50px;
  margin: 0;
  z-index: 2;
  overflow: auto;
  white-space: pre;
  width: 100%;
  height: 100%;
}
.editor-container .ss-container .linesDiv {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  padding-right: 10px;
  padding-top: 4px;
  text-align: right;
  z-index: 5;
  overflow: hidden;
  color: #888;
}
.editor-container .ss-container textarea {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 0 0 50px;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: transparent;
  caret-color: #00ffcc;
  border: none;
  outline: none;
  resize: none;
  z-index: 4;
  overflow: auto;
  white-space: pre;
}
.editor-container .ss-container-dark .ss-keyword {
  color: #569CD6;
}
.editor-container .ss-container-dark .ss-function {
  color: #DCDCAA;
}
.editor-container .ss-container-dark .ss-variable {
  color: #9CDCFE;
}
.editor-container .ss-container-dark .ss-number {
  color: #B5CEA8;
}
.editor-container .ss-container-dark .ss-string {
  color: #CE9178;
}
.editor-container .ss-container-dark .ss-comment {
  color: #6A9955;
  font-style: italic;
}

.toast-body pre {
  white-space: pre-wrap; /* erlaubt Zeilenumbruch */
  word-break: break-word; /* bricht lange Wörter */
  max-width: 100%; /* verhindert Überlauf */
}

.ql-toolbar {
  border-radius: 5px 5px 0 0;
}

.ql-container {
  border-radius: 0 0 5px 5px;
}

.ql-editor {
  font-size: 1.4em !important;
}

.accordion-button {
  font-size: 20px;
  font-weight: bold;
}
/*# sourceMappingURL=style.css.map */