.bosses
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 450px));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.boss
{
    position: relative;
    font-size: 2.0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgb(84, 143, 215) 0%, rgb(8, 69, 118) 100%);
    box-shadow: 2px -2px 15px rgba(200, 200, 200, 0.1);
    color: white;
}
.boss .name
{
    font-size: 2.4rem;
    font-weight: bold;
}
.boss .region, .boss .location, .boss .cooldown
{
    font-size: 2.0rem;
}
.boss .cooldown
{
    margin-top: 10px;
}

.add-boss
{
    display: none;
    background: none;
    border: 2px solid #099f09;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-height: 160px;
}
.add-boss img
{
    height: 40px;
    width: 40px;
}
.boss .remove-btn
{
    display: none;
    height: 20px;
    aspect-ratio: 1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.boss-head
{
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 550px));
    gap: 20px;
    padding: 20px;
    justify-content: center;
    font-size: 2.2rem;
}
.boss-image
{
    width: 120px;
    aspect-ratio: 1;
    object-fit: contain;
}
.boss-head .location:not(:empty), .admin .boss-head .location
{
    padding: 20px 0 10px;
    width: 100%;
}

.boss-image-input
{
    display: none;
}
.edit-btn, .save-btn, .loading-btn
{
    display: none;
    position: fixed;
    top: 100px;
    right: 25px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #208fab;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.edit-btn img, .save-btn img, .loading-btn img
{
    height: 100%;
    width: 100%;
}
.loading-btn
{
    cursor: default;
}

.boss-head .drag-image-boss
{
    display: none;
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(0, 100, 0, 0.6);
    justify-content: center;
    align-items: center;
}
.boss-head .drag-image-boss img
{
    height: 40px;
    aspect-ratio: 1;
    filter: grayscale(1) brightness(2);
}

.boss-head input
{
    display: none;
    background: transparent;
    border-bottom: 1px solid white;
    width: 80%;
}
.boss-head textarea
{
    padding: 10px;
    font-size: 2.0rem;
    resize: none;
    border-radius: 10px;
}
