.userBox {
    display: block;
    float: left;
    border: 2px outset black;
    background-color: lightgray;
    text-align: center;
    max-width: 700px;
    min-width: 400px;
    flex: 1;
}

.NAVbackground {
    background-color: #2b2e31;
}

.background {
    background-color: #686f77;
}

.skillBox {
    background-color: whitesmoke;
    text-align: center;
}

.HSBox {
    background-color: whitesmoke;
    text-align: center;
    max-width: 420px;
}

.HSHourlyBox {
    background-color: whitesmoke;
    text-align: center;
    max-width: 840px;
}

.EventBox {
    background-color: whitesmoke;
    text-align: center;
    max-width: 840px;
}

.flex-container {
    display: flex;
    width: 100%;
    justify-content: center;
}

.inline-container {
    display: inline-block;
    width: 100%;
  }

.inline {
    margin: 5px 5px;
    display: inline;
}

.inline-left {
    margin: 5px 5px;
    display: inline;
    text-align: left;
}

.inline-right {
    margin: 5px 5px;
    display: inline;
    text-align: right;
}

.no-margin {
    margin: 0;
}

.block {
    margin: 5px;
    display: block;
}

.flex {
    margin: 10px 10px;
    flex: 1;
}

.parent {
    align-items: left;
}

.child {
    margin-inline: 5px;
    display: inline-block;
}

.sidebar-open {
    transform: translateX(0);
}

.sidebar {
    position: fixed;
    overflow-y: scroll;
    top: 10%;
    left: 0px;
    width: 300px;
    max-height: 75%;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.recHighscore-open {
    transform: translateX(0);
}

.recHighscore {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 70%;
    max-width: 500px;
    max-height: 600px;
    min-width: 300px;
    min-height: 200px;
    overflow-y: scroll;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    color: #fff;
    border: 2px solid #fff; /* Add this line to add a border */
    padding: 15px;  
    display: flex;
    flex-direction: column;
}

.invis {
    visibility: hidden !important;
}

.sBTN {
    height: 5%;
    margin: 2, 5%;
    padding-top: 2px;
    padding-bottom: 2px;
}

.bottom-left-container {
    position: fixed;
    bottom: 1%;
    left: 1%;
}

.bottom-left-button {
    display: inline;
    z-index: 9998;
    border-color: whitesmoke;
    border-width: 2px;
    width: 10%;
    height: 10%;
    min-width: 100px;
    min-height: 80px;
    margin: 5px;
}   

.bottom-center-container {
    position: relative;
    margin-top: auto;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.top-center-container {
    margin-bottom: 20px;
}

.relative-bottom-center-button {
    display: block;
    z-index: 9999;
    border-color: whitesmoke;
    background: rgb(109 109 109);
    border-width: 2px;
    width: 20%;
    height: 10%;
    min-width: 120px;
    min-height: 80px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.relative-bottom-center-object {
    display: block;
    z-index: 9999;
    border-color: whitesmoke;
    border-width: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

table {
    margin-bottom: 0 !important;
}

img.miniimg {
    height: 16px;
    width: 16px;
}

img {
    border: 0;
}

.centerTxt {
    text-align: center;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px;
}

.podium .position {
    text-align: center;
    padding: 10px;
    margin: 0 10px;
    width: 120px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.podium .first {
    height: 200px;
    background-color: gold;
}
.podium .second {
    height: 160px;
    background-color: silver;
}
.podium .third {
    height: 140px;
    background-color: #cd7f32; /* Bronze color */
}



.podium4th5th {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px;
    max-width: 420px;
}

.position p {
    margin: 0;
}
.position .name {
    font-weight: bold;
    margin-bottom: 5px;
}
.position .medals {
    font-size: 12px;
    color: #555;
    vertical-align: bottom;
}

.ConditionListToggleBox {
    border: 1px solid #2b2e31;
    background-color: #ccc;
}

.hover {
    cursor: pointer;
}

.donthover {
    cursor: default;
}

.timer {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: #f7f7f7;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.timer.running {
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.timer.expired {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

body {
    min-width: 900px;
}

[v-cloak] {
    display: none
}