.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Background overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    text-align: center;
    position: relative;
  }
  .close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
  }
  .modal-title {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.4;
    color: #1C337B;
  }
  .button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
  }
  .btn-primary {
    background-color: #1a4187; /* Specific blue from image */
    color: #ffffff;
  }
  .btn-primary:hover {
    background-color: #14336b;
  }
  .btn-secondary {
    background-color: #e0e0e0;
    color: #333;
  }
  .btn-secondary:hover {
    background-color: #d0d0d0;
  }