/* Sayfa düzeni */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.info-message {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 10;
    text-align: center;
    font-family: Arial, sans-serif;
}


.viewer-home {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;  /* Buton genişliği */
    height: 40px; /* Buton yüksekliği */
    background-color: transparent;
    border-radius: 50%;  /* Daire şeklinde buton */
    cursor: pointer;
}

.viewer-home::before {
    content: '\f015';       /* Font Awesome ev ikonu */
    font-family: 'Font Awesome 5 Free';  
    font-weight: 900;
    font-size: 20px;        /* İkon boyutunu küçült */
    color: white;           /* İkon rengini beyaz yap */
}



