﻿.note-list-header {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.note-list-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* 리스트 컨테이너 */
.note-list-items {
    max-height: 950px;
    overflow-y: auto;
}

/* 리스트 아이템 */
.note-list-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .note-list-item:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.15);
    }

/* 아이템 헤더 */
.note-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.note-item-stock {
    display: flex;
    align-items: center;
    gap: 8px;
}

.note-item-name {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

.note-item-code {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.note-item-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* 아이템 내용 */
.note-item-content {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 빈 상태 */
.note-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.note-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.note-empty-title {
    font-size: 16px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.note-empty-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* 활성화된 통계 카드 */
.stat-card.active {

}

/* 스크롤바 스타일 */
.note-list-items::-webkit-scrollbar {
    width: 6px;
}

.note-list-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.note-list-items::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

    .note-list-items::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }
