body {
    margin: 0;
    font-family: "Courier New", monospace;
    background: #f4f1ea;
    color: #3b3b2f;
    text-align: center;
}

header {
    padding: 20px;
    background: #6b8f71;
    color: white;
}

section {
    margin-top: 40px;
}

button {
    display: block;
    margin: 12px auto;
    padding: 10px 18px;
    background: #8a9a5b;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
}

button:hover {
    background: #6b8f71;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modalContent {
    background: #fffdf7;
    padding: 25px;
    border-radius: 15px;
    width: 300px;
}

.hidden {
    display: none;
}

textarea {
    width: 90%;
    height: 100px;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 8px;
}
