@tailwind base;
@tailwind components;
@tailwind utilities;

/* --- Notes Container --- */
.notes-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* --- Individual Note Entry --- */
.note-entry {
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
}

    /* Add a subtle shadow on hover to indicate it's a distinct item */
    .note-entry:hover {
        background-color: #f1f1f1;
    }

/* --- Note Content (The actual note text) --- */
.note-content {
    margin: 0 0 10px 0;
    word-wrap: break-word; /* Ensure long words don't break the layout */
}

/* --- Note Metadata (User & Date) --- */
.note-meta {
    margin: 0;
    font-size: 0.9em;
    color: #555;
    text-align: right;
}

    .note-meta strong {
        font-weight: 600;
    }

/* --- Confidential Note Style --- */
.note-entry.confidential {
    background-color: #fff2f2;
    border-left-color: #e53935;
    color: #b71c1c;
}

    .note-entry.confidential .note-meta {
        color: #c62828;
    }