.notes-card {
    grid-column: span 2;
    grid-row: span 4;
}

/* Quick Notes Styling */
.notes-content {
    flex: 1;
    display: flex;
    min-height: 0;
}

#quick-notes-textarea {
    width: 100%;
    min-height: 250px;
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px;
    font-size: 0.9rem;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.01);
    resize: none;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

#quick-notes-textarea:focus {
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 0 0 3px rgba(59, 130, 246, 0.1);
}
