
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.form-label.mood {
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.form-label.mood:hover {
    background-color: #f0f0f0;
}

.form-label.mood.checked {
    background-color: #007bff;
}

textarea {
    width: 100%;
    height: 100px;
    resize: none;
}
