body {
    margin: 0;
    padding: 0;
    background-color: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.image-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#display-image {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.controls {
    display: flex;
    position: fixed;
    bottom: 20px;
    z-index: 10;
}

.arrow-button {
    /* Button Shape & Size */
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes it a circle */

    /* Color and Border */
    background-color: #007bff; /* Example blue background */
    border: none;

    /* Centering the SVG */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Interaction */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.arrow-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Styling the SVG arrow inside the button */
.arrow-button svg {
    width: 24px;
    height: 24px;
    fill: #ffffff; /* White arrow */
}