body {
    margin: 0;
}

.material-icons:hover {
    cursor: pointer;
}

#lightbox-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

#lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo {
    width: 100px;
}

#logo:hover {
    cursor: pointer;
}

#image-index-with-arrows-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

#image-index-container {
    display: flex;
    gap: 10px;
}

.mobile-image-index {
    position: absolute;
    width: 100%;
    justify-content: space-between;
}

#close-btn {
    font-size: 30px;
    margin-right: 15px;
}

#lightbox-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 32px;
}

#image-caption-container {
    display: grid;
    place-items: center;
    margin: 0;
}

#image {
    width: 100%;
    max-width: 85vw;
    max-height: 60vh;
}

#caption {
    text-align: center;
    color: white;
    padding: 10px;
    max-width: 85vw;
}

#ad-container {
    display: block;
    min-width: 300px;
    max-height: 600px;
}

.ad-container-inactive {
    display: none!important;
    width: 0!important;
    height: 0!important;
    margin: 0!important;
}