body {
    font-family: sans-serif;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 1.5em;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    margin-top: 0;
}

.modal-content input,
.modal-content textarea {
    width: 95%;
    margin-bottom: 1em;
    padding: 0.5em;
}

.modal-content button {
    padding: 0.5em 1em;
    margin-right: 0.5em;
}

.close-btn {
    background: #ccc;
}

.create-btn {
    background: #007bff;
    color: #fff;
    border: none;
}

.text-area {
    resize: none;
}

.button-row {
    display: flex;
    justify-content: flex-end;
    gap: 0.5em;
}