/* ===== Navigation ===== */

.navigation-flex {
    display: none;
    flex-direction: row;
    justify-content: flex-end;
    margin: 16px 0;
}

.navigation-flex a {
    margin-left: 1em;
}

#navigation-toggler {
    border-radius: 8px;
    padding: 4px 8px;
    display: inline;
    background-color: lightgrey;
}

#navigation-toggler:hover {
    cursor: pointer;
}

/* ===== ===== */
.picker-row {
    margin-top: 2em;
    font-size: 1.3em;
}

#vote-btn {
    margin-top: 2em;
    margin-bottom: 2em;
}

.chart-container {
    max-width: 400px;
    max-height: 400px;
}

.vote-icon {
    background-color: red;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    margin-left: 1em;
}

.vote-icon.active {
    background-color: green;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-container {
    margin-bottom: 25px;
}

.vote-description {
    font-style: italic;
    color: darkgrey;
}

/* ===== KD Style ===== */
.kd-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.kd {
    height: 40px;
    width: 30px;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kd-head {
    border-radius: 50%;
    height: 20px;
    width: 20px;
    background-color: red;
}

.kd-body {
    height: 20px;
    width: 10px;
    background-color: grey;
}

.attack-btn {
    margin-bottom: 4px;
}

.strategy-list {
    list-style: none;
}

/* ===== Utility ===== */
.divider {
    margin: 30px 0;
    height: 2px;
    width: 100%;
    background-color: lightgrey;
}

/* ===== Spinner ===== */
#ajax-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: darkgrey;
    opacity: 0.5;
    z-index: 99999;
    color: white;
    text-align: center;
    padding-top: 30%;
    font-size: 2em;
}

/* ===== World Boss ===== */
.world-boss-container {
    border-radius: 8px;
    border: 4px solid crimson;
    text-align: center;
    margin: auto;
}
