/* style.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.note-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.note-card h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.note-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

.note-card .actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

textarea {
    resize: vertical;
}


