﻿/* GALERİ BÖLÜMÜ - CORE ve LAB SAYFALARINDA */
/* BAŞLANGIÇ */
#mainDisplayImage {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
}
/* Küçük Resimler */
.thumbnail-gallery-image {
    height: 120px;
    width: auto;
    max-width: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .thumbnail-gallery-image:hover {
        transform: scale(1.05);
    }

.gallery-thumb:hover {
    border: 2px solid #0d6efd;
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

.gallery-thumb.selected-thumb {
    border: 2px solid #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
}
/* Resim Konumu */
.image-index {
    /* position: absolute;
			top: 10px;
			right: 20px; */
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.9rem;
}
/* Kapatma Butonu */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 20;
}

    .close-btn:hover {
        transform: scale(1.2);
        color: crimson;
        transition: transform 0.2s ease, color 0.2s ease;
    }
/* BİTİŞ */

/* ------------------------------------------------------------------------------------ */


