:root {
    --gradient-background: linear-gradient(to bottom, #990019 0, #6d0019 75%) !important;
    --bs-primary: #990019 !important;
    --bs-btn-bg: #990019 !important;
}

:root .btn-primary {
    background: var(--gradient-background) !important;
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #6d0019 !important;
    --bs-btn-border-color: #6d0019 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #6d0019 !important;
    --bs-btn-hover-border-color: #6d0019 !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #6d0019 !important;
    --bs-btn-active-border-color: #6d0019 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #6d0019 !important;
    --bs-btn-disabled-border-color: #6d0019 !important;
}

nav a {
    color: white;
    text-decoration: none;
}

.grid-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        margin: 0;
    }

    nav, main, aside {
        margin: 0;
    }
}


.content-wrapper {
    display: flex;
    flex: 1;
    gap: 20px;
    margin: 0 auto;
    width: 1350px;
    @media (max-width: 1350px) {
        width: 750px;
    }
    @media (max-width: 750px) {
        width: auto;
    }
}

nav {
    height: fit-content;
    margin-top: 3rem;
    margin-right: -20px;
    min-width: 10%;
}

nav a {
    color: white;
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    background: rgba(150, 150, 150, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px 0 0 4px;
    display: block;
    text-align: center;
    border-right: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

main {
    flex: 1;
}


.logo {
    justify-content: center;
    display: flex;
}

body {
    margin: 0;
    padding: 0;
    font-family: Helvetica Neue, Helvetica, sans-serif;
    color: #000;
    background: transparent url(../img/jamal-lg.jpg) no-repeat fixed center center;
    background-size: cover;
}

.login-info {
    text-align: right;
    margin-right: 32rem;
}

a.link {
    text-decoration: none;
    text-align: center;
    background-color: #9a1e1e;
    color: white;

    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    margin: 10px 0;
    display: block;
}

.frame {
    width: fit-content;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(150, 150, 150, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;

    flex-flow: column;
}

.box {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    header {
        margin: -21px -21px 21px -21px;
    }

    &.nopadding {
        padding: 0;

        header {
            margin: 0;
        }
    }
}


header {
    font-size: 1.5rem;
    color: white;
    background: var(--gradient-background);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-align: center;
}

.player-status {
    text-align: center;

    .alive,
    .dead,
    .lives,
    .nolives {
        color: white;
        display: inline-block;
        padding: 5px 10px;
        border-radius: 5px;
        width: 10rem;
        font-weight: bold;
    }

    .alive, .lives {
        background-color: #4CAF50;
    }

    .dead, .nolives {
        background-color: var(--bs-primary);
    }

    .player-name {
        font-weight: bold;
    }

    img {
        width: 10rem;
    }
}

.latest-deaths ul {
    padding-left: 20px;
}
