#confirmation-dialog-container {
  display: none;
  position: fixed;
  z-index: 120;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 20px;
  background: rgba(4, 26, 61, 0.42);
  backdrop-filter: blur(2px);
}
 
#confirmation-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: min(420px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid #d9e6ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(4, 26, 61, 0.24);
}

#confirmation-dialog button {
  min-height: 46px;
  min-width: 112px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

#confirmation-yes {
  color: #ffffff;
  border: 0;
  background: #041a3d;
}

#confirmation-no {
  color: #041a3d;
  border: 1px solid #c9d8e2;
  background: #ffffff;
}

#confirmation-dialog-msg-section {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

#confirmation-dialog-msg-section img {
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 50%;
  background: #fff4d8;
}

#confirmation-dialog-msg {
  margin: 0;
  color: #041a3d;
  font-size: 1rem;
  line-height: 1.45;
}

#confirmation-dialog .nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 640px) {
  #confirmation-dialog {
    top: auto;
    bottom: 16px;
    translate: -50% 0;
    padding: 20px;
  }

  #confirmation-dialog .nav-actions {
    flex-direction: column-reverse;
  }

  #confirmation-dialog button {
    width: 100%;
  }
}
