
/*general application styles*/
html, body {
    min-height: 100vh;
    background-color: black;
}

input {
    font-family: 'Verdana', sans-serif;
    max-width: 5em;
}

h1 {
    font-family: 'Verdana', sans-serif;
}

.pkmn {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.pkmn-select {
    color: black;
    background-color: lightblue;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    max-width: fit-content;
}


/*custom box styles*/
.custom-box-none {
    border-radius: 1px; /* Or any desired border radius */
    box-shadow:	0 0.5em 1em -0.125em hsla(0deg 0% 35%), 0 0 0 1px hsla(0deg 0% 75%); /* Or any desired shadow */
    padding: 20px; /* Or any desired padding */
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
}

.custom-box-none-fail {
    border-radius: 1px; /* Or any desired border radius */
    box-shadow:	0 0.5em 1em -0.125em red, 0 0 0 1px red; /* Or any desired shadow */
    padding: 20px; /* Or any desired padding */
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
}


.custom-box {
    border-radius: 1px; /* Or any desired border radius */
    box-shadow:	0 0.5em 1em -0.125em hsla(0deg 0% 35%), 0 0 0 1px hsla(0deg 0% 75%); /* Or any desired shadow */
    padding: 20px; /* Or any desired padding */
    margin: 10px;
}

.custom-box-success {
    border-radius: 6px; /* Or any desired border radius */
    box-shadow: 0 0.5em 1em -0.125em hsla(118deg 100% 35%), 0 0 0 1px hsla(118deg 100% 75%); /* Or any desired shadow */
    padding: 20px; /* Or any desired padding */
    margin: 10px;
}

.custom-box-fail {
    border-radius: 6px; /* Or any desired border radius */
    box-shadow: 2px 2px 3px red, 0 0 0 1px red; /* Or any desired shadow */
    padding: 20px; /* Or any desired padding */
    margin: 10px;
}

/*other component styles*/
.stat-input {
    margin-top: 1.25rem;
    width: 80%
}

.stat-operator {
    margin-left: -2rem;
    margin-right: -3rem;
}

.weight-input {
    margin-top: 1.25rem;
    margin-left: -4rem;
    width: 80%;
}

.weight-input-label {
    margin-top: -2rem;
    margin-right: -5em;
}

.metric-height-input {
    margin-top: 1.25rem;
    margin-left: -5em;
    width: 60%;
}

.metric-height-label {
    margin-top: -2rem;
    margin-left: 2em;
}

.feet-height-input {
    width: 4rem;
    margin-top: 1.25rem;
}

.inches-height-input {
    width: 4rem;
    margin-top: 1.25rem;
}

.feet-height-label {
    margin-top: 1.6rem;
    margin-left: -1rem;
}

.inches-height-label {
    margin-top: 1.6rem;
    margin-left: -1rem;
}

.type-icon {
    margin-top: 10px;
    height: 22px;
    width: auto;
}
