
.btn {
    background-color: grey;
  }

  .btn.disabled {
    background-color: yellow;
  }
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .popup-content p {
    margin: 0 0 20px;
  }

  .popup-content button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
  }

  .popup-content button:hover {
    background-color: #0056b3;
  }

  .popup-content .icon {
    display: block;
    margin-bottom: 20px;
  }
  
  .popup-content .admin-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }