.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: none;
  }

  .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    color: #000000;
    padding: 0px 0px 5px 20px;
  }

  .popup-header-left {
    display: flex;
    align-items: center;
  }

  .popup-logo {
    height: 40px;
    margin-right: 10px;
    margin-top: 5px;
  }

  .popup-heading {
    font-size: 18px;
  }

  .popup-header-right {
    display: flex;
  }

  .popup-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }

  .popup-body {
    display: flex;
    padding: 20px;
    background: #222433;
  }

  .popup-image {
    width: 150px;
    margin-right: 20px;
  }

  .popup-description {
    flex-grow: 1;
    color: #ffffff;
  }

  .popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222433;
    color: #fff;
    padding: 0px 0px 10px 10px;
  }

  .popup-footer-left {
    font-size: 16px;
    padding: 5px 0px 0px 0px;
  }

  .popup-buttons {
    display: flex;
    padding: 0px 5px 15px 0px;
  }

  .popup-button {
    padding: 8px 20px;
    margin-left: 10px;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 10px;
  }

  .red-button {
    background-color: red;
  }

  .green-button {
    background-color: green;
    animation: blink 1s infinite;
  }

  .album__artwork {
  width: 22%;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  }
  .bold{
  font-weight: bold;
  }
  .cross{
      padding: 8px 10px 0px 0px;
  }
  .minimize{
      padding: 8px 10px 0px 0px;
  }
  .footer-content{
      margin: 0px;
  }

  .security-close-button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #888;
  }
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }