.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #9e9e9e;
}

h3 {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

.dialog-box {
  background-color: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  box-shadow: 0px 1px 5px #1111114d;
  padding: 0;
}
.dialog-box.small {
  width: 400px;
  min-height: 200px;
}
.dialog-box.regular {
  width: 600px;
  min-height: 200px;
}
.dialog-box.large {
  width: 900px;
  min-height: 200px;
}
.dialog-box.mobile {
  max-width: 424px;
  width: calc(100vw - 20px);
}

.overflow-visible {
  overflow-y: auto;
}

.overflow-hidden {
  overflow: hidden;
}

dialog::backdrop {
  background-color: #75757580;
}

.clickable {
  cursor: pointer;
}

.contents {
  display: flex;
  flex-direction: column;
  min-height: inherit;
}

.padding {
  padding: 8px 16px;
}

.align-right {
  margin-left: auto;
  display: flex;
}

.header {
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 36px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}

.title {
  font-size: 18;
  font-weight: 500;
  font-family: "Roboto", serif;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
}

.icon {
  padding-right: 8px;
  width: 24px;
  height: 24px;
}

.icon-close {
  width: 24px;
  height: 24px;
}

.body-content {
  font-size: 16;
  font-weight: 400;
  font-family: "Roboto", serif;
}

.body {
  text-overflow: ellipsis;
  padding: 16px;
}

.footer {
  display: flex;
  flex-direction: row;
  margin-top: auto;
  border-top: 1px solid #d5d5d5;
  height: 36px;
  position: sticky;
  background: white;
  bottom: 0;
}

::slotted([slot=buttons]) {
  display: flex;
  gap: 8px;
}

.header.info {
  border-bottom: 1px solid #1479c6;
}

.header.success {
  border-bottom: 1px solid #a2bb31;
}

.header.warning {
  border-bottom: 1px solid #f59500;
}

.header.critical {
  border-bottom: 1px solid #dc0000;
}