.custom-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  /* Centered card */
  .custom-modal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    font-family: inherit;
  }

  .custom-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
  }

  .custom-modal-title {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: bold;
  }

  .custom-modal-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 15px 0;
  }

  .custom-modal-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
  }

  .custom-modal-btn {
    padding: 6px 16px;
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }