#imgModal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.9);
}

#imgModalContent {
  display: block;
  margin: auto;
  height: 75vh;          /* Всегда 90% от высоты окна */
  width: auto;            /* Автоматическая ширина */
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  object-fit: contain;    /* сохраняем пропорции */
  image-rendering: auto;  /* сглаживание при увеличении */
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#imgCaption {
    margin: 15px auto;
    text-align: center;
    color: #ccc;
    font-size: 18px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}