body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

pre {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.m-form-text {
    height: 2.4em;
    width: 70%;
    max-width: 200px;
    padding: 0 16px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.m-form-text:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.m-form-submit-button {
    display: inline-block;
    width: 70%;
    max-width: 200px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.m-form-submit-button:hover {
    background-color: #000;
}

.m-form-submit-button:focus {
    outline: 0;
    background-color: #000;
    border: 2px solid rgb(33, 150, 243);
}

.m-form-item-textarea textarea {
    height: 70%;
}

.m-form-textarea {
    display: block;
    width: 70%;
    height: 20em;
    padding: 0.5em 0.5em;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    resize: vertical;
}

.m-form-textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.box {
    width: fit-content;
    text-align: left;
    padding: 0.5em 1em;
    margin: 1em 0;
    border: solid 2px #000000;
    border-radius: 0.5em;
    width: 70%;
}

.box p {
    margin: 0;
    padding: 0;
}

.create-button {
    display: inline-block;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: #4DB56A;
    color: #fff;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: 2px solid transparent;
    width: 70%;
    margin-top: 0.5em;
}

.create-button:hover {
    background-color: #6cc184;
}

.create-button:focus {
    outline: 0;
    background-color: #6cc184;
    border: 2px solid rgb(33, 150, 243);
}

.delete-button {
    display: inline-block;
    width: 100px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: #e74c3c;
    color: #fff;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.delete-button:hover {
    background-color: #ff5341;
}

.delete-button:focus {
    outline: 0;
    background-color: #ff5341;
    border: 2px solid rgb(33, 150, 243);
}

.button-group {
    display: flex;
    justify-content: center;
}

.limit-button {
    background-color: #ccc;
    border: none;
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

.limit-button.selected {
    background-color: #333;
}