.quick-notes-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 20px 20px 20px; /* Extra bottom padding for shadow/scroll clearance */
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    box-sizing: border-box;
    /* Hide scrollbar for a cleaner look */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.quick-notes-scroller::-webkit-scrollbar {
    display: none; 
}

.qn-card {
    flex: 0 0 auto;
    width: 200px;
    height: 180px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: background 0.2s, transform 0.2s;
}
.qn-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}

.qn-card-add {
    background: rgba(59,130,246,0.05);
    border: 1px dashed rgba(59,130,246,0.3);
    align-items: center;
    justify-content: center;
    text-align: center;
}
.qn-card-add:hover {
    background: rgba(59,130,246,0.1);
}

.qn-date {
    font-size: 10px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.qn-preview-text {
    font-size: 13px;
    color: #dedede;
    line-height: 1.5;
    /* Truncate after 5 lines */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}