/* Tło lightboxa */
  .box-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
  }
  /* Okno lightboxa */
  .box-content {
    background: #fff;
	position: fixed; 
	bottom: 10px;
	right: 10px;
    padding: 10px;
	max-height: 470px;
    max-width: 330px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
  }
  button {
    padding: 5px 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  button:hover {
    background: #0056b3;
  }
  button {
    margin-bottom: 5px;
}
button:last-child {
    margin-bottom: 0;
}