html {
  overflow: hidden;
}

body {
  height: 100vh;
  overflow: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  text-decoration: none;
  color: var(--main-dark-color);
  font-family: 'Figtree', 'Noto Sans JP', sans-serif, Helvetica, 'Apple Color Emoji', Arial, sans-serif,
    'Segoe UI Emoji', 'Segoe UI Symbol';
  -webkit-font-smoothing: subpixel-antialiased;
  user-select: none;
  --font-size-big: 24px;
  --font-size-medium: 14px;
  --font-size-small: 12px;
}

.button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  border-radius: 5px;
  width: fit-content;
  height: 34px;
  font-size: var(--font-size-medium);
  outline: none;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease;
  flex-shrink: 0;
}

.button > img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.button.small-img > img {
  width: 18px;
  height: 18px;
}

.primary.button {
  display: var(--primary-button-view) !important;
  background-color: #0073ea;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.primary.button > span {
  color: #ffffff;
}

.primary.button:hover {
  background-color: #1160b9;
}

.primary.button:active {
  background-color: #3f66ba;
}

.secondary.button {
  background-color: transparent;
  color: var(--main-grey-color);
  border: 1px solid var(--panel-border-color);
  /* font-weight: 500; */
}

.secondary.button:not(.no-hover):hover {
  background-color: rgb(0 0 0 / 5%);
}

.secondary.button:active {
  background-color: rgb(0 0 0 / 7%);
}

.button.round {
  height: 24px;
  width: 24px;
  padding: 0px;
  justify-content: center;
  border-radius: 50%;
  transition: box-shadow 200ms ease, -webkit-box-shadow 200ms ease;
}

.button.round > img {
  width: 20px;
  height: 20px;
}

.button.round:hover {
  box-shadow: 0 0 0 4px rgba(76, 123, 234, 0.3);
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.modal {
  visibility: hidden;
  display: flex;
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

.modal-content {
  overflow-y: auto;
  position: absolute;
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  width: 65vw;
  min-width: 600px;
  padding: 40px 50px 20px 50px;
  border-radius: 20px;
  z-index: 101;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.6, 1), scale 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  opacity: 0;
  scale: 0.75;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-body {
  min-height: 40vh;
  max-height: 60vh;
  margin: 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc(100% - 40px);
  height: fit-content;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--panel-border-color);
  overflow-y: auto;
}

.no-bottom-line {
  border-bottom: none;
}

.modal-footer {
  height: 50px;
  margin: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 40px);
}

.modal-footer > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.modal-footer > div > span {
  color: var(--main-grey-color);
  font-size: var(--font-size-small);
}

.modal-title {
  font-size: var(--font-size-large);
  /* margin-left: 20px; */
}

.modal-subtitle {
  font-size: var(--font-size-medium);
  color: var(--main-grey-color);
}

.modal-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.active {
  visibility: visible !important;
}

.modal-transition-container {
  visibility: hidden;
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.6, 1), scale 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  opacity: 0;
  scale: 0.5;
}

.modal-transition {
  visibility: visible !important;
  opacity: 1 !important;
  scale: 1 !important;
}

.no-transition {
  transition: none;
}

.ex-inte-content {
  width: 70vw;
  height: 70vh;
  justify-content: flex-start;
}

.select-holder {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
  border: 1px solid #d0d4e4;
  cursor: pointer;
  transition: scale 100ms linear;
  -webkit-text-fill-color: var(--main-grey-color);
  height: 35px;
  margin-top: 30px;
  padding: 0px 10px;
  width: 140px;
  transition: background-color 300ms ease;
}

.select-holder.without-title {
  margin-top: 0;
}

.select-holder:hover {
  background-color: rgb(0 0 0 / 5%);
}

.select-holder::before {
  content: attr(select-title);
  position: absolute;
  left: 0px;
  top: -20px;
  font-size: var(--font-size-small);
  color: var(--main-grey-color);
  padding: 0px;
  background-color: #fff;
}

.select-holder:active {
  background-color: rgb(0 0 0 / 10%);
}

.select-holder:has(.active) {
  background-color: rgb(0 0 0 / 10%) !important;
}

.select-holder.inactive {
  opacity: 0.5;
  pointer-events: none;
}

.select-holder.title-left {
  width: min(calc(100% - 150px), 500px);
  height: 34px;
  padding: 2px 10px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 150px;
}

.select-holder.title-left::before {
  content: attr(select-title);
  font-size: var(--font-size-small);
  color: var(--main-grey-color);
  -webkit-text-fill-color: var(--main-grey-color);
  padding: 0px;
  width: var(--detailed-attribute-label-width);
  text-align: right;
  background-color: #fff;
  top: unset;
  left: calc(-1 * calc(var(--detailed-attribute-label-width) + var(--detailed-attribute-gap)));
  pointer-events: none;
}

.select-holder.invalid {
  border: 1px solid #df434c;
}

.search-input-wrapper.invalid {
  border: 1px solid #df434c;
}

.select-icon {
  height: fit-content;
}

.select-icon::after {
  content: '';
  background-image: url(../../resources/images/triangle.svg);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  display: inline-block;
  width: 14px;
  height: 14px;
  rotate: 180deg;
  transition: rotate 250ms linear;
}

.select-holder:has(.active) .select-icon::after {
  rotate: 0deg;
}

.select-value-container {
  width: var(--select-width);
  position: absolute;
  gap: 0px;
  max-height: 200px;
  top: calc(100% + 5px);
  background-color: #fff;
  border-radius: 3px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 0 0 1px rgb(64 87 109 / 7%), 0 2px 12px rgb(53 71 90 / 20%);
  transform-origin: top center;
  z-index: 200;
}

.select-value-container > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 5px 10px;
  color: var(--main-grey-color);
  -webkit-text-fill-color: var(--main-grey-color);
  cursor: pointer;
  width: var(--select-width);
  height: 40px;
  box-sizing: border-box;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden !important;
  font-size: var(--font-size-medium);
  gap: 5px;
}

.select-value-container::-webkit-scrollbar {
  width: 7px;
}

.select-value-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.13);
    border-radius: 5px;
}

.select-value-container::-webkit-scrollbar-track {
    background: rgb(0 0 0 / 0%);
}

.select-value-container > div:hover {
  background-color: rgb(0 0 0 / 2%);
}

.select-color {
  width: 5px;
  height: 15px;
}

.select-name {
  width: calc(100% - 40px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  gap: 5px;
  font-size: var(--font-size-medium);
}

.settings-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
  gap: 15px;
  cursor: pointer;
  border-radius: 3px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}

.settings-status > label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: var(--select-width);
  cursor: pointer;
  font-size: var(--font-size-small);
  color: var(--main-grey-color);
  padding: 0px 5px;
  transition: padding 200ms linear;
}

.status-chosen {
  background-color: #4dacff44 !important;
}

.settings-status:active {
  background-color: #d4e9fd;
}

.settings-status-color-circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #0050d4;
  flex-shrink: 0;
}

.settings-status-text-span {
  font-size: 12px;
}

.settings-status-edit {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.settings-status-edit::after {
  content: '';
  background-image: url(../../resources/images/done.svg);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  display: block;
  width: 15px;
  height: 15px;
  visibility: hidden;
}

.settings-status:hover .settings-status-edit::after {
  visibility: visible;
}

.settings-status.empty-status:hover .settings-status-edit::after {
  display: none;
}

.search-input-wrapper {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  border: 1px solid #d0d4e4;
  border-radius: 4px;
  width: 200px;
}

.without-title {
  margin-top: 0;
}

.search-input-wrapper::before {
  content: attr(select-title);
  position: absolute;
  left: 0;
  top: -20px;
  font-size: var(--font-size-small);
  color: var(--main-grey-color);
  -webkit-text-fill-color: var(--main-grey-color);
  padding: 0px;
  background-color: #fff;
}

.without-title::before {
  display: none;
}

.search-input-wrapper > input[type='date'],
.search-input-wrapper > input[type='text'],
.search-input-wrapper > input[type='number'] {
  width: var(--input-width);
  height: 35px;
  padding: 5px 10px;
  font-size: var(--font-size-small);
  border-radius: 3px;
  border: none;
  color: inherit;
  -webkit-text-fill-color: var(--main-dark-color);
}

.search-input-wrapper:has(input[type='date']:focus),
.search-input-wrapper:has(input[type='text']:focus),
.search-input-wrapper:has(input[type='number']:focus) {
  border-color: var(--focus-border-color);
  box-shadow: 0 0 0 1px var(--focus-border-color)inset;
}

.search-input-wrapper > input[type='text']::placeholder,
.search-input-wrapper > input[type='number']::placeholder,
.search-input-wrapper > input[type='date']::placeholder {
  -webkit-text-fill-color: var(--main-grey-color);
}

.detailed-isle .search-input-wrapper.title-left {
  margin-left: 0;
}

.search-input-wrapper.title-left {
  width: 50%;
  position: relative;
  margin-top: 0px;
  display: flex;
  align-items: center;
  margin-left: 140px;
}

.search-input-wrapper.title-left > input[type='date'],
.search-input-wrapper.title-left > input[type='text'],
.search-input-wrapper.title-left > input[type='number'] {
  width: 100%;
  height: 32px;
  background-color: #f9f9fa;
  padding: 2px 10px;
}

.search-input-wrapper.title-left > input:hover[type='text'],
.search-input-wrapper.title-left > input:focus[type='text']{
  background-color: #fff;
}

.search-input-wrapper.title-left::before {
  content: attr(select-title);
  position: absolute;
  top: 5px;
  /* position: unset; */
  font-size: var(--font-size-small);
  color: var(--main-grey-color);
  -webkit-text-fill-color: var(--main-grey-color);
  padding: 0px;
  left: -145px;
  width: 135px;
  text-align: right;
  background-color: #fff;
}

.scroll-wrapper {
  overflow-y: auto;
  -webkit-text-fill-color: #151515;
  color: rgba(0, 0, 0, 0.13);
  transition: color 200ms linear;
}

.scroll-wrapper::-webkit-scrollbar {
  width: 7px;
}

.scroll-wrapper::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

.scroll-wrapper::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 10px;
  border-radius: 5px;
}

.scroll-wrapper:hover {
  color: rgba(0, 0, 0, 0.13);
}

/* horizontal scroll */

.scroll-wrapper-horizontal {
  -webkit-text-fill-color: black;
  color: rgba(0, 0, 0, 0.13);
  transition: color 200ms linear;
}

.scroll-wrapper-horizontal::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}

.scroll-wrapper-horizontal::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

.scroll-wrapper-horizontal::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 10px;
  border-radius: 5px;
}

.scroll-wrapper-horizontal:hover {
  color: rgba(0, 0, 0, 0.2);
}

.disabled-input {
  color: var(--main-grey-color);
  pointer-events: none;
}

.hidden {
  visibility: hidden !important;
}

.invisible {
  display: none !important;
}

.message-info-container {
  position: absolute;
  left: 50px;
  bottom: 50px;
  padding: 30px 20px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: opacity 300ms ease;
  z-index: 1000;
}

.message-info-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  height: 10px;
  width: 100%;
  background-color: #0050d4;
}

.message-info-container.transition {
  opacity: 1;
}

.message-info-container > div {
  width: 260px;
}

.blocking-message-info-container {
  position: absolute;
  left: calc(50vw - 150px);
  bottom: calc(50vh - 100px);
  padding: 30px 20px;
  width: 400px;
  height: 130px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: opacity 300ms ease;
  z-index: 1000;
}

.blocking-message-info-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  height: 10px;
  width: 100%;
  background-color: #0050d4;
}

.blocking-message-info-container.transition {
  opacity: 1;
}

.blocking-message-info-container > div {
  width: 360px;
}

.blocking-message-info-container .message-body {
  font-size: var(--font-size-medium);
}

.message-title {
  font-size: var(--font-size-medium);
  padding: 5px 0px;
  border-bottom: 1px solid var(--panel-border-color);
}

.message-body {
  font-size: var(--font-size-small);
}

.message-animation {
  background: linear-gradient(90deg, rgb(255 0 0 / 50%), rgb(0 0 255 / 50%));
  background-repeat: no-repeat;
  background-position: bottom left;
  height: 2px;
}

.message-animation.start {
  background-size: 0% 1px;
  animation: message-line-animation 1s forwards;
}

@keyframes message-line-animation {
  0% {
    background-size: 0% 1px;
  }
  100% {
    background-size: 100% 1px;
  }
}

.blocking-message-animation {
  background: linear-gradient(90deg, rgb(255 0 0 / 50%), rgb(0 0 255 / 50%));
  background-repeat: no-repeat;
  background-position: bottom left;
  height: 3px;
}

.blocking-message-animation.start {
  background-size: 0% 2px;
  animation: blocking-message-line-animation 1s forwards;
}

@keyframes blocking-message-line-animation {
  0% {
    background-size: 0% 2px;
  }
  100% {
    background-size: 100% 2px;
  }
}

.blocking-message-info-container.success > .blocking-message-animation {
  background: linear-gradient(90deg, rgb(0 255 0 / 70%), rgb(0 255 0 / 20%));
}

.blocking-message-info-container.success::before {
  background-color: #469d7a;
}

.blocking-message-info-container.error > .blocking-message-animation {
  background: linear-gradient(90deg, rgb(255 0 0 / 70%), rgb(255 0 0 / 20%));
}

.blocking-message-info-container.error::before {
  background-color: #df434c;
}

.message-info-container.success > .message-animation {
  background: linear-gradient(90deg, rgb(0 255 0 / 70%), rgb(0 255 0 / 20%));
}

.message-info-container.success::before {
  background-color: #469d7a;
}

.message-info-container.error > .message-animation {
  background: linear-gradient(90deg, rgb(255 0 0 / 70%), rgb(255 0 0 / 20%));
}

.message-info-container.error::before {
  background-color: #df434c;
}

.updateable-span {
  cursor: pointer;
  padding: 5px;
  display: inline-block;
  width: 100%;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 30px;
}

.updateable-span:empty {
  outline: 1px solid var(--input-border-color);
}

.updateable-span[contenteditable='true'] {
  outline: 1px solid var(--input-border-color);
  cursor: text;
}

.updateable-span:not(:empty):hover {
  text-decoration: underline;
}

.menu-container {
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 200px;
  padding: 8px 16px;
  min-width: 100px;
  min-height: 40px;
  z-index: 1000;
  overflow: hidden;
  transition: width 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 100ms,
    height 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 100ms;
}

.menu-container.active {
  width: 200px;
}

.menu-container > div {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-medium);
  color: var(--main-dark-color);
  transition: padding 200ms linear;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.menu-container > div:hover::after {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url(../../resources/images/folder-triangle.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  filter: grayscale(1);
  margin-left: 10px;
  color: var(--main-grey-color);
  -webkit-text-fill-color: var(--main-grey-color);
  font-size: var(--font-size-medium);
}

/* The switch - the box around the slider */
.toggle-switch {
  display: flex;
  align-items: center;
  gap: 5px;
}

.toggle-switch > label {
  color: var(--main-grey-color);
  -webkit-text-fill-color: var(--main-grey-color);
  font-size: var(--font-size-small);
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 16px;
}

/* Hide default HTML checkbox */
.switch input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}

/* alert, confirm modals */
.modalConfirm {
  display: flex;
  position: fixed;
  z-index: 10000;
  left: 0;
  align-items: center;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  visibility: hidden;
}

.modal-contentConfirm {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40vw;
  border-radius: 5px;
  transition: opacity 150ms linear, scale 200ms ease;
  transform-origin: center;
  opacity: 0;
  scale: 0.75;
}

#infoMessage,
#infoMessageAlert,
.info-message {
  font-size: 14px;
  width: 100%;
  color: #676879;
  font-weight: 400;
  vertical-align: middle;
  resize: none;
  overflow-y: auto;
  overflow-x: hidden;
  word-break: break-all;
  padding: 20px 0px;
  overflow-wrap: break-word;
  box-sizing: border-box;
  max-height: 50vh;
  white-space: pre;
}

.alert-header {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-header-label {
  color: #333;
}

.alert-header-close::after {
  content: '✖';
  color: #333;
  cursor: pointer;
}

.modal-button {
  background-color: #0052cc;
  border: 1px solid #e5e7eb;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}

.alert-btn-container {
  text-align: right;
}

#confrim-checkbox-container {
  width: 100%;
  vertical-align: middle;
  text-align: left;
  display: none;
  margin: 10px 0px 0px 0px;
}

.modal-button.cancel {
  background-color: #fff;
  border: none;
  color: #6b7280;
}

.modal-button.cancel:hover {
  border: 0px solid;
  border-radius: 5px;
  background-color: #f5f5f5;
}

.disabled {
  pointer-events: none !important;
  opacity: 0.5;
}

.button.secondary.green {
  background-color: #087600;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.button.secondary.green:hover {
  background-color: #0b8c01;
}

.button.secondary.green:active {
  background-color: #0daa02;
}

.button.secondary.red {
  background-color: #760000;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.button.secondary.red:hover {
  background-color: #930101;
}

.button.secondary.red:active {
  background-color: #af0000;
}

.basic-select {
  margin-right: 10px;
}

.basic-select > label {
  color: var(--main-grey-color);
  font-size: var(--font-size-medium);
  margin-right: 5px;
}

.basic-select > select {
  padding: 3px 10px;
  border: 1px solid #808f9d;
  border-radius: 6px;
  color: var(--main-grey-color);
}

.basic-select > select > option {
  color: var(--main-grey-color);
  font-size: var(--font-size-small);
}

.global-highlight {
  display: none;
  position: absolute;
  left: 0px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0050d4 90%, #0050d400);
  top: calc(var(--header-height) - 2px);
  z-index: 10;
  opacity: 0;
  transition: width 2.5s linear;
}

.global-highlight.loading {
  width: 100%;
  opacity: 1;
}

.global-highlight.success,
.global-highlight.error {
  width: 100vw;
  transition: none;
}

.global-highlight.success {
  background: linear-gradient(90deg, #0b8c01 90%, #0b8c0100);
}

.global-highlight.error {
  background: linear-gradient(90deg, #930101 90%, #93010100);
}

.increased-padding {
  padding-top: 40px !important;
  padding-bottom: 30px !important;
  height: fit-content !important;
}

.user-info-setting-btn-div {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  margin-left: 0px;
  cursor: pointer;
  transition: scale 100ms linear, translate 100ms linear;
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info-setting-btn-div:hover {
  background-color: rgb(0 0 0 / 5%);
}

.user-info-setting-btn-div:active {
  scale: 0.97;
  translate: 5px 0px;
}

.user-info-setting-btn-div img {
  width: 20px;
  height: 20px;
}

#userInfo,
#online-users-wrapper {
  width: 250px;
  visibility: hidden;
  z-index: 1100;
  position: absolute;
  border-radius: 5px;   
  padding: 15px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #323338;
  box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.1);
}

#userInfo table {
  width: 100%;
}

.modal-button.delete {
  background-color: #e3546c;
}

.modal-button.delete:hover {
  background-color: #d1425a;
}

.modal-button.delete:active {
  background-color: #c22f48;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0px;
  padding-bottom: 8px;
}

.logo-container > img {
  width: 150px;
  margin: 11px 0px 10px 20px;
}

.logo-container > span:nth-child(1) {
  color: var(--main-grey-color);
  font-size: 20px;
}

.logo-container > span:nth-child(2) {
  color: #4172c7;
  font-size: 20px;
}

/* #error html */

.error-logo-container {
  font-size: 30px;
  font-weight: bold;
  color: #6d6e6f;
  text-align: center;
  padding-bottom: 20px;
  height: 100px;
  /* background: red; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-logo-container > span {
  color: #3098ff;
}

.error-header {
}

.error-container {
  font-size: 24px;
}

.error-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.error-link {
  color: #fff;
  background-color: #0050d4;
  padding: 7px 20px;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}

.error-link:hover {
  background-color: #0060e4;
}

.error-link:active {
  background-color: #0070f4;
}

img::-moz-selection {
  background: transparent;
}
img::selection {
  background: transparent;
}

.title-span {
  color: #4573d2;
  -webkit-text-fill-color: #4573d2;
  font-weight: bold;
}

.modal-content hr {
  display: block;
  height: 1px;
  width: 100%;
  border: 0;
  border-top: 1px solid #ccc;
}

.apps-raw {
  margin-left: 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-name {
  font-size: var(--font-size-large);
  color: var(--main-dark-color);
  font-weight: 600;
}

.app-icon {
  width: 180px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-icon-large {
  width: 180px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-icon-large img {
  width: 48px;
  height: 48px;
}

.app-icon-large .app-name {
  font-size: 48px;
}

.recipe-component {
  width: 280px;
  font-size: var(--font-size-medium);
  text-align: center;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recipe-component span {
  margin-bottom: 5%;
}

.modal-body .button {
  min-width: 54px;
}

.modal-body .button span {
  display: block;
}

.recipe-component .button {
  display: inline-block;
  margin: auto;
}

.connect-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.connect-icons-container img {
  width: 96px;
  height: 96px;
}

.double-way-arrow {
  background: #333;
  height: 10px;
  width: 100px;
  margin: 0 20px;
  position: relative;
  filter: drop-shadow(1px 1px 1px #333);
}
.double-way-arrow:before {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-right: 15px solid #333;
  border-bottom: 20px solid transparent;
  position: absolute;
  content: '';
  left: -15px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  transform: translatey(-50%);
}
.double-way-arrow:after {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 15px solid #333;
  border-bottom: 20px solid transparent;
  position: absolute;
  content: '';
  right: -15px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  transform: translatey(-50%);
}

.span-container {
  max-width: 250px;
  font-size: var(--font-size-medium);
}

.connect-modal-body {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.highlighted {
  color: #ccc;
  font-weight: bold;
  text-decoration: underline;
}

.highlighted-usual-color {
  color: var(--main-dark-color);
}

.on-modal {
  width: 250px;
  height: auto;
  z-index: 1001;
  position: absolute;
  padding: 15px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #323338;
  box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.1);
}

.on-modal table {
  width: 100%;
}

#recipe-message-window {
  width: 300px;
}

.recipe-window-header {
  font-size: var(--font-size-medium);
}

.message-window-content-title {
  font-size: var(--font-size-medium);
  padding-top: 5%;
}

.message-format-container {
  height: 80px;
  margin-left: 5%;
}

.message-format-container textarea {
  border: 1px solid #6d6e6f11;
  resize: none;
  width: 100%;
  height: 100%;
}

.message-field-container .apps-raw .button {
  padding: 2px 5px;
}

#recipe-message-window .primary {
  position: relative;
  margin-top: 5%;
  margin-left: 80%;
}

.table-container .apps-raw {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 60px;
  min-width: 500px;
  width: 30vw;
  position: relative;
}

.table-container img {
  width: 24px;
  height: 24px;
}

.table-container .right-above-island {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  right: 0;
  top: 0;
}

.table-container .right-above-island .switch {
  margin-top: 10px;
}

.table-container .right-below-island {
  padding: 5px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.table-container .no-pointer {
  cursor: default;
}

.connected-apps {
  margin-left: 5%;
}

.connected-apps .table-content {
  position: relative;
  border-collapse: collapse;
  min-width: 500px;
  width: 30vw;
  font-size: var(--font-size-medium);
}

.connected-apps .table-header {
  background-color: #f3f4f5;
}

.connected-apps tr {
  border: 1px solid #6d6e6f11;
}

.connected-apps img {
  width: 24px;
  height: 24px;
}

.account-button {
  min-width: 300px;
  width: 20vw;
  height: 50px;
}

.account-button img {
  width: 24px;
  height: 24px;
}

.secondary.button.dotted {
  border: 1px dotted #333;
}

/* Custom Flatpickr styles */
.flatpickr-calendar {
  animation: slideIn 0.3s ease-out;
}

#date-picker {
  border: none !important;
  width: 100% !important;
}

.calendar-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--input-border-color);
  border-radius: 5px;
  width: 80%;
}

.calendar-icon {
  position: relative;
  width: 18px;
  height: 18px;
  right: 10px;
}
