html, body {
    margin: 0;
    min-height: 100vh;
    background-color: rgb(50, 50, 50);
    font-family: Arial, sans-serif;
}

body {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.page {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 90%;
    max-width: 1000px;
}

.silhouette-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.silhouette {
    display: block;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
}

.controls-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bar-label {
    display: flex;
    background-color: rgb(100, 100, 100);
    border-radius: 10px;
    height: 10%;
    width: 40%;
    justify-content: center;
}

.bar-label-text {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    color: white;
}

.chosen-stat-label-text {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    color: white;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.bar-track {
    width: 260px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.text-bar {
    display: flex;
    width: 260px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6ec6ff, #3a8dde);
    width: 0%;
}

/* #bar-fill-family-class #bar-fill-luck #bar-fill-timing{ width: 0%; }
#bar-fill-education { width: 0%; }
#bar-fill-iq { width: 0%; } */

.die {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

nav, .rulediv {
    background-color:#3a8dde;
    padding: 10px;
    border-color:#6ec6ff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.link-box{
    background-color: rgb(100, 100, 100);
    border-radius: 2px;
    padding: 5px;
}

a {
    color: white;
}

.plus-minus-button {
    background: linear-gradient(90deg, #6ec6ff, #3a8dde);
    color: white;
    border-radius: 2px;
    border-color: transparent;
    width: 40px;
    height: 40px;
    text-align: center;
    text-justify: auto;
    font-size: 30px;
}