:root {
    --alert-image: url(assets/alert.png);
}

.changelog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed !important;
	bottom: 0px !important;
	right: 30px !important;
	z-index: 10 !important;
	min-width: 320px !important;
	width: 20vw !important;
}

.update-container {
    background-color: #110301;
    width: 95%;
    padding: 20px;
    height: 60vh;
    max-height: 700px;
    overflow-y: auto;
    border-radius: 0 0 30px 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
}

.update {
    background-color: white;
    height: auto;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.update a {
    color: #2f67a4;
}
.update a:hover {
    color:#9ec8dd;
}
.update a:visited {
    color: #B69C77;
}
.update a:visited:hover {
    color:#9ec8dd;

}

.update > .header {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #B69C77;
    padding: 12px 15px;
}

.changelog > .header {
    width: calc(95% + 40px);
    height: 80px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: x-large;
    font-weight: bold;
    background-image: url(assets/header1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.changelog > .header span {
    background-color: #110301;
    padding: 5px 15px;
}

.update > .content {
    padding: 15px;
}

.update > .content p {
    padding-bottom: 10px;
    line-height: 1.5;
}

.update > .content li > p {
    margin-top: .5rem;
}

.update > .content > ul small {
    padding-bottom: 1rem;
}

.update ul {
    margin: 0;
}

.site-version {
    font-size: small;
    font-weight: bold;
    color: #555;
}

.alert {
    display: flex;
    align-items: center;
    background-color: #9ec8dd;
    font-size: small;
    color: #2f67a4;
    padding: 12px 15px 12px 60px;
    margin: 0;
    border-bottom: 1px solid #2f67a4;
    position: relative;
    height: 40px;
}

.alert::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background-image: var(--alert-image);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.footer.hand {
    background-image: url(assets/hand_footer.png);
    width: 115%;
    height: 200px;
    margin-top: -40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 2;
    margin-right: 16px;
}