aside {
    background-color: lightgray;
    display: inline-grid;
    justify-content: center;
}

article {
    text-align: center;
    margin: 6px;
    width: 100%;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    padding: 6px;
}

form {
    display: flex;
    flex-direction: column;
    padding: 6px;
}

label {
    padding: 6px 6px 0 6px;
}

input[type="number"] {
    text-align: right;
}

table {
    margin-top: 6px;
    margin-right: auto;
    margin-bottom: 6px;
    margin-left: auto;
}

p {
    margin: 6px;
}

h4 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: lightgray;
}

h5 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    background-color: lightgray;
    color: white;
}


.athleteSelect {
    border-radius: 6px;
    border: 1px royalblue solid;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    display: inline;
    width: auto;
    margin: 0;
}

.athleteSpan {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 6px;    
}

.width100 {
    width: 100%;
}

.framed {
    border: 1px solid black;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: bold;
}

.clignote {
    animation: clignoter 1s infinite;
    color: red;
    font-weight: bold;
}
@keyframes clignoter {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}

.noBorder {
    border: none;
}

.noBorderRight {
    border-right: none;
    padding-left: 0;
}

.noBorderLeft {
    border-left: none;
    padding-left: 0;
}

.noBorderBottom {
    border-bottom: none;
    padding-bottom: 0;
}

.noBorderTop {
    border-top: none;
    padding-top: 0;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.bold {
    font-weight: bold;
}

.noPadding {
    padding: 0;
}

.center {
    text-align: center;
}

a.sortSelected {
    pointer-events: none;
    cursor: default;
    color: gray;
}