.face-id-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .face-id-box {
    background: #212121;
    border-radius: 20px;
    padding: 0px 30px 10px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    width: 240px;
    position: relative;
  }
  .face-id-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
  }
  .face-id-close:hover {
    color: #ff4d4d;
  }
  .face-video-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .video-wrapper {
    position: relative;
    width: 240px;
    height: 180px;
  }
  #webcam {
    border: 2px dashed #aaa;
    border-radius: 12px;
    background: black;
    height: 180px;
  }
  #face-canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  .face-id-status {
    color: #00ffaa;
    font-weight: bold;
    font-size: 14px;
    margin-top: 30px;
  }
  .mt-2{
    margin-top: 10px;

  }