.raids-section {
    background: #fff;
    padding: 30px;
    color: #000;
    min-height: 100%;
    margin-top: 60px;
}

.raids-section-content {
    border: 5px solid #000;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
    font-size: 16px;
}

.loading-indicator {
    width: 100%;
    padding: 50px;
    text-align: center;
    font-size: 48px;
    font-style: italic;
    color: #666;
}

.raids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    grid-gap: 20px;
}

.raid-leaderboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.raid-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}

.raid-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.raid {
    display: flex;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 0 10px;
    align-items: center;
    gap: 10px;
}

.raid.first {
    background: rgba(202, 161, 18, 0.4);
}

.raid.second {
    background: rgba(171, 166, 156, 0.4);
}

.raid.third {
    background: rgba(158, 73, 8, 0.4);
}

.raid-position {
    font-size: 72px;
    width: 80px;
    text-align: center;
}

.raid-profile-picture {
    width: 100px;
}

.raid-name-and-count {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.raid-name {
    font-size: 34px;
}

.raid-count{
    font-size: 24px;
    font-style: italic;
}

@media (max-width: 900px) {
    .raids-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}