.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 34, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.modal-dialog {
  background: #232328;
  border: 1px solid transparent;
  border-image: linear-gradient(
      to bottom,
      rgba(228, 25, 54, 0.7),
      rgba(228, 25, 54, 0.3)
    )
    1;
  width: 840px;
  height: 500px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.modal-header {
  padding: 24px 24px 0 24px;
}
.modal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #393943;
}

.modal-title {
  font-size: 20px;
  color: #fff;
  font-family: "Magnita";
  font-weight: 400;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: url("../../images/close_icon.png") no-repeat center center;
  background-size: 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-sizing: border-box;
}

.modal-content {
  overflow-y: auto;
  padding: 24px;
  font-size: 14px;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(255, 255, 255, 0.3) #232328; /* Firefox */
}

/* Chrome, Edge, Safari */
.modal-content::-webkit-scrollbar {
  width: 6px;
  background: rgba(255, 255, 255, 0.3);
}
.modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content-item {
  margin-bottom: 24px;
}

.modal-content-item:last-child {
  margin-bottom: 0;
}
.modal-content-item-title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 12px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content-item-detail {
  padding-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
