* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    padding: 10px;
    padding-bottom: 30px;
    background: white;
}

#image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    z-index: 5;
}

#image-container img {
    cursor: pointer;
}

#pagination-display{
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    z-index: 1;
}

#blur {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Use RGBA for background color to include transparency */
    background: rgba(130, 130, 130, 0.5); /* Semi-transparent grey */
    left: 0px;
    top: 0px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}