#verifiedModal{
    z-index: 10;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    text-align: center;
    width: 440px;
    max-width: 80vw;
    height: 230px; /* Give it a real height */
    padding: 20px;
    background-color: whitesmoke;
    opacity: 0;
    box-shadow: 0 0 20px slategray;
    transition: opacity 0.3s linear;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#verifiedModal.active {
    display: flex;
    opacity: 1;
}

#verifyCloseBtn {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 10px;
    padding-right: 15px;
    opacity: .5;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 30px;
    outline: none;
}


.checkmark-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.checkmark {
  width: 80px;
  height: 80px;
}

.checkmark-circle {
  fill: whitesmoke;
  stroke: #2e7d32;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 132; 
  stroke-dashoffset: 132;
  animation: draw-circle 0.5s ease-out .75s forwards;
  r: 21; /* ✅ shrinks circle to bring it tighter to the check */
  cx: 26;
  cy: 26;
}

.checkmark-check {
  stroke: #2e7d32;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: draw-check 0.5s ease-out 1.25s forwards;
}

@keyframes draw-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}