.gallery-wrapper {
    width: 660px;
    height: 350px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

#gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px;
    font-size: 11px;
    text-align: center;
    min-height: 20px;
}

.gallery-controls {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: #eee;
    border-top: 1px solid #ccc;
}

.gallery-controls button {
    padding: 5px 15px;
    border: 1px solid #999;
    background: #fff;
    cursor: pointer;
    font-size: 11px;
}

.gallery-controls button:hover {
    background: #f0f0f0;
}

.gallery-counter {
    font-size: 11px;
    color: #666;
}
