body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f3f3;
}

#main-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    text-align: center;
}

.wrinkler {
    height: 100px;
    width: 200px;
}

@media screen and (max-width: 550px) {
    .wrinkler {
        height: 50px;
        width: 100px;
    }
}

button {
    padding: 0.5rem 1rem;
}

label {
    font-size: 85%;
}

#strategy-details summary h2 {
    display: inline;
}

#strategy-details:hover {
    cursor: pointer;
}

#save-input-container {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
}

#save-input {
    padding: 0.5rem 1rem;
}

.label-on-top {
    display: flex;
    flex-direction: column;
}

.full-width-label {
    flex: 1 auto;
}

#seed-and-spells-input-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
    flex-flow: row wrap;
}

#seed-and-spells-input-container > div > input {
    max-width: 8rem;
}

#results-container {
    min-height: 10rem;
}

.error-message {
    color: red;
    font-weight: bold;
}