body {
    background: transparent;
    color: #efdbb9;
    text-align: center;
    font-size: 24px;
    margin: 0;
    padding: 20px;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
#death-message.show {
    display: block;
    animation: fadeInOut 10s ease-in-out; /* 10 Sekunden Dauer */
}

p {
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: right;
    font-family: "EB Garamond", serif;
    color: #efdbb9;
    font-size: 32px;
    font-weight: 600;
    text-shadow: -1px -1px 1px #000000a5,
             1px -1px 1px #000000a5,
             -1px 1px 1px #000000a5,
             1px 1px 1px #000000a5;
}

.right {
    position: absolute;
    fill: #efdbb9;
    width: 150px;
    right: 0px;
    top: -350px
}

.text-container{
    filter: drop-shadow(2px 3px 2px #000);
    display: flex;
    justify-content: flex-end;
    margin-right: 90px;
    margin-top: 0px;
}

#prefix {
    margin-right: 10px;
}

.progress-bar-container{
    height: 20px;
    margin: 5px 0px;
    margin-left: 16px;
    margin-right: -7px;
    background: #00000097;
    border-radius: 0px;
    position: relative;
    border: 1.5px solid #efdbb9;
}

.progress-bar-indicator{
    height: 100%;
    border-radius: 0px;
    -webkit-mask:linear-gradient(#fff 0 0);
            mask:linear-gradient(#fff 0 0);
}

.progress-bar-indicator::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #956d09;
}

.boss-container {
    filter: drop-shadow(2px 3px 2px #000);
    position: absolute;
    overflow: hidden;
    right: 20px;
    top: 115px;
    height: 250px;
    overflow-y: auto;w
    scroll-behavior: smooth;
}
.boss-container::-webkit-scrollbar {
    display: none;
}

.boss-list {
    list-style: none;
    text-align: right;
}



.area {
    margin-top: 10px;
    font-size: 30px;
    font-weight: bold;
}

.boss {
    font-size: 20px;
    color: #959595;
}

.killed {
    color: #efdbb9;
}

#death-message {
    display: none;
    position: absolute;
    padding: 20px;
    background-color: #00000097;
    border: solid 1.5px #efdbb9;
    border-radius: 0;
    top: 370px;
    right: 10px;
    width: 250px;
}

.death-name {
    margin-top: 0px;
    color: #b8860b;
    font-size: 32px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.death-reason {
    margin-top: 10px;
    color: #efdbb9;
    font-size: 32px;
    text-align: center;
    font-size: 28px;
    word-break: break-word;
    margin-left: auto;
    margin-right: auto;
}
