
  .card img {
  width: 160px;      
  height: 160px;
  object-fit: contain; 
  display: block;
  margin: 0 auto;      
}
 
  .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); 
    display: none; 
    justify-content: center; 
    align-items: center; 
    z-index: 9999;
  }

  .popup-box {
    background: #fff;
    border-radius: 12px;
    border: 3px solid #00cc00;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    max-width: 400px;   
    width: 90%;         
    overflow: hidden;
    font-family: 'Comfortaa', sans-serif;
  }

  .popup-header {
    margin: 0; padding: 0;
    overflow: hidden;  
  }

  .slider-container {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .slider-images {
    display: flex;
    width: 300%; 
    transition: transform 0.8s ease-in-out;
  }

  .slider-images img {
    width: 33.3333%; 
    height: auto;
    object-fit: cover;
    border-radius: 0;
    display: block;
  }

  .popup-content {
    padding: 20px 25px; 
  }

  .message-box {
    direction: ltr;
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    text-align: left;
    padding: 10px 0;
  }

  .message-box strong {
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
  }

  .popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2px;
  }

  .popup-buttons button {
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
      box-shadow: rgb(53, 144, 0) 0px .27rem 0px 0px, rgba(179, 174, 119, 0.6) 0px 0.25rem 0.125rem 0px;

  }

  .popup-buttons button:hover {
    background-color: #45a049;
      box-shadow: rgb(53, 144, 0) 0px .27rem 0px 0px, rgba(179, 174, 119, 0.6) 0px 0.25rem 0.125rem 0px;

  }
