/* ===================================================
   Raid Roster V2
=================================================== */

.raid-roster{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:25px;

}

.raid-role{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.raid-role-title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#d4af37;

    font-size:22px;

    font-weight:700;

    margin-bottom:10px;

}

.raid-role-count{

    color:#cfd8e3;

    font-size:22px;

    font-weight:700;

    min-width:24px;

    text-align:right;

}

.role-icon{

    width:55px;

    height:55px;

    object-fit:contain;

    margin-right:10px;

    vertical-align:middle;

}

/* ===================================================
   Character Frame
=================================================== */

.raid-frame{

    position:relative;

    background:linear-gradient(180deg,#1b2027,#11161d);

    border:1px solid rgba(212,175,55,.25);

    border-radius:8px;

    padding:10px;

    transition:.2s;

    overflow:visible;

    text-decoration:none;

    color:inherit;

    display:block;

}

.raid-frame:hover{

    transform:translateY(-2px);

    border-color:#d4af37;

    cursor: pointer;

    box-shadow:
        0 0 14px rgba(212,175,55,.18);

}

/* ===================================================
   Head
=================================================== */

.raid-frame-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:8px;

}

.raid-player{

    display:flex;

    align-items:center;

    gap:10px;

}

.raid-avatar{

    width:42px;

    height:48px;

    border-radius:6px;

    border:1px solid rgba(255,255,255,.15);

}

.raid-name{

    font-size:18px;

    font-weight:700;

}

/* ===================================================
   Rang Balken Itemlevel
=================================================== */

.raid-rank{

    padding:4px 8px;

    border-radius:5px;

    color:white;

    font-size:11px;

    font-weight:700;

}

.raid-healthbar{

    height:12px;

    background:#0d1117;

    border-radius:999px;

    overflow:hidden;

    margin-bottom:8px;

}

.raid-health-fill{

    height:100%;

    border-radius:999px;

}

.raid-ilvl{

    color:#c9d1d9;

    font-size:13px;

}

/* ===================================================
   Tooltip Raidframes
=================================================== */

.raid-tooltip{

    position:absolute;

    left:50%;

    bottom:110%;

    transform:translateX(-50%);

    min-width:220px;

    background:#0d1117;

    border:1px solid #d4af37;

    border-radius:8px;

    padding:12px;

    color:white;

    font-size:13px;

    line-height:1.6;

    opacity:0;

    pointer-events:none;

    transition:.2s;

    z-index:50;

}

.raid-frame:hover .raid-tooltip{

    opacity:1;

}

@media(max-width:1500px){

    .raid-roster{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:900px){

    .raid-roster{

        grid-template-columns:1fr;

    }

}

.tooltip-name{

    color:#d4af37;

    font-size:17px;

    font-weight:700;

    margin-bottom:4px;

}

.tooltip-realm{

    color:#9ca3af;

    font-size:13px;

    margin-bottom:8px;

}

.raid-tooltip hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.12);

    margin:8px 0;

}

.tooltip-link{

    margin-top:8px;

    color:#d4af37;

    font-size:12px;

}