.exception-popup-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  
  .exception-popup {
    display: flex;
    flex-direction: column;
    width: 310px;
    height: 190px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: blink-animation 1s infinite;
    border: groove;
    background: white;
  }
  
  .exception-popup:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .exception-popup-header {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
    color: black;
    font-weight: 500;
    border-bottom: groove;
  }
  .header-left {
    display: flex;
    align-items: center;
  }
  
  .icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  
  .title {
    margin-right: 5px;
  }
  
  .close-button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #888;
  }
  
  .exception-popup-body {
    display: flex;
    padding: 10px;
  }
  
  .exception-popup-image {
    flex: 1;
  }
  
  .exception-popup-image img {
    max-width: 75%;
    height: auto;
    margin-top: 10px;
  }
  
  .exception-popup-text {
    flex: 2;
    padding-left: 10px;
    color: black;
    font-weight: 400;
  }
  
  .exception-popup-footer {
    padding: 5px;
    text-align: center;
    background-color: #f1f1f1;
    display: flex;
    justify-content: space-between;
    border-bottom: groove;
  }
  
  .ok-button {
    border: none;
    background-color: red;
    color: #fff;
    padding: 5px 35px;
    cursor: pointer;
  }
  
  .footer-left {
    flex: 1;
  }
  
  .footer-right {
    display: flex;
    align-items: center;
  }
  .color-red{
      color: red;
      text-transform: uppercase;
      font-size: 15px;
      font-weight: 900;
      text-shadow: 0 2px 0 rgba(0, 0, 0, 0.07);
  }
  @keyframes blink-animation {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }