body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.gallery-container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px; /* Daha büyük buton */
    height: 50px; /* Daha büyük buton */
    font-size: 24px; /* Daha büyük yazı */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    background-color: #ff1a1a;
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.main-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.zoom-controls button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px; /* Daha büyük buton */
    height: 50px; /* Daha büyük buton */
    font-size: 24px; /* Daha büyük yazı */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-controls button:hover {
    background-color: #0056b3;
}

.thumbnails {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.thumbnail-item {
    text-align: center;
}

.thumbnail-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.thumbnails img {
    width: 100px;
    height: 75px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s, border 0.2s;
    border: 2px solid transparent;
    object-fit: cover;
}

.thumbnails img:hover {
    transform: scale(1.1);
    border: 2px solid #007BFF;
}

.description {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}