﻿body {
    background: #1e1e1e;
    margin: 0;
    padding: 0;
}

.image-viewer-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-viewer {
    width: 100%;
    max-width: 1050px;
    height: 81vh;
    background: #111;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.slide-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.navigation {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nav-button {
    min-width: 120px;
    font-size: 16px;
    padding: 10px 20px;
    background-color: #b2d1f0;
}

.image-counter {
    color: white;
    font-size: 17px;
    min-width: 80px;
    text-align: center;
}

.image-name {
    color: #ccc;
    margin-top: 10px;
    font-size: 14px;
}

.no-image {
    color: white;
    font-size: 20px;
}
