.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

h1, h2 {
    text-align: center;
}
h1 a {
    position: absolute;
    right: 1rem;
    font-size: 1rem;
    line-height: 230%;
}



.panel {
    display: flex;
    margin-bottom: 1rem;
}
.panel label {
    display: inline-flex;
    flex-direction: column;
    row-gap: 0.5rem;
}
.panel button {
    padding: 0 1rem;
    background-color: #6495ed;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: 1px solid gray;
    border-radius: 4px;
    font-size: 1rem;
}
.panel button:hover {
    cursor: pointer;
    background-color: #7ba4ef;
}
@media (max-width: 767px) {
    .panel {
        flex-direction: column;
    }
    .panel label {
        display: flex;
    }
    .panel button {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* Message */

.message {
    margin: 1rem 0;
    padding: 0.5rem 1rem;
}

.message.error-message {
    border: 1px solid #EB1D36;
    background-color: #FA9494;
    border-radius: 4px;
}

/* Details */

details {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 0.5rem 0.5rem 0;
    margin-bottom: 1rem;
}
details summary {
    font-weight: bold;
    margin: -0.5rem -0.5rem 0;
    padding: 0.5rem;
    background-color: #f5f5f5;
    cursor: pointer;
    border-radius: 4px;
}
details[open] {
    padding: 0.5rem;
}
details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: 0.5rem;
    border-radius: 4px 4px 0 0;
}



.details-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.details-content .cameo {
    float: left;
    margin-right: 8px;
    vertical-align: top;
}
.details-content input {
    margin-left: 0;
    margin-top: 0;
}
.details-content .title {
    font-weight: bold;
}
.details-content .description {
    font-size: 14px;
    color: gray;
}
@media (max-width: 575.98px) {
    .details-content {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .details-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
