/* Круглые стрелки навигации (календарь, полноэкранное фото и т.д.) */
.app-nav-arrows {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    flex-shrink: 0;
}

.app-nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    background: transparent;
    color: #495057;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.app-nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.06);
    color: #212529;
}

.app-nav-arrow__icon {
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
}

.app-nav-arrow__icon svg {
    width: 100%;
    height: 100%;
}

/* Полноэкранный просмотр фото на тёмном фоне */
.detail-image-popup__stage .app-nav-arrow {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.12);
}

.detail-image-popup__stage .app-nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}
