.header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
    .header-row {
        flex-direction: column;
        align-items: start;
    }
}

.button {
    display: inline-block;
    background-color: var(--botticelli);
    color: var(--tiber);
    border: 1px solid var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;

    &:hover {
        cursor: pointer;
        text-decoration: none;
        background-color: var(--white);
        color: var(--cornflower-blue);
    }
}

@media screen and (max-width: 768px) {
    .button {
        padding: 5px 10px;
    }
}

.button-warning {
    background-color: var(--ming);
    border: 1px solid var(--red);
    color: var(--red);

    &:hover {
        background-color: var(--red);
        color: var(--white);
    }
}

.button.disabled {
    background-color: var(--ming);
    border: 1px solid var(--botticelli);
    color: var(--botticelli);

    &:hover {
        cursor: not-allowed;
    }
}

.button-container {
    display: inline-block;
    height: 100%;

    >* {
        height: 100%;
    }
}

.author-caption {
    font-size: 0.8em;
    margin: 0;
    padding: 0;
}

.label-green {
    display: inline-block;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
}

.instructions {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
    .instructions {
        font-size: 0.9rem;
    }
}