﻿.std-dialog-content {
  border-radius: var(--dialog-border-radius);
  border: none;
}

.std-dialog-header-custom {
  background-color: var(--main-color-2);
  color: var(--main-color-3);
  border: none;
  border-top-left-radius: var(--dialog-border-radius);
  border-top-right-radius: var(--dialog-border-radius);
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.std-dialog-title-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  flex-grow: 1;
}

  .std-dialog-title-custom .title-box {
    background-color: var(--calendar-color-1);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .std-dialog-title-custom .title-text {
    display: flex;
    justify-content: center;
    margin: 0;
    font-size: var(--header-font-size);
  }

.std-dialog-header-custom .close {
  margin-left: auto;
  background-color: var(--secondary-color-1);
  fill: #313537;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px 0px 0px;
  margin: 0px 10px 0px 0px;
}

  .std-dialog-header-custom .close:hover {
    color: #495057;
    fill: red;
    background-color: #ced4da;
  }

.std-dialog-footer-custom {
  border-top: none;
  justify-content: flex-end;
}
