@charset "utf-8";
.car-list-link {
  border: double;
  padding: 2px;
  font-weight: bold;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox:target {
  display: flex;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #333;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: 0.2s;
}
.lightbox-close:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}