/* 快速記錄專用樣式 — 從 QuickNoteTab.html 提取 */
#quickNoteTab .filter-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    display: block;
}

#quickNoteTab .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
}

#quickNoteTab .form-control:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.2);
}

.qn-group {
    background: white;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #eee;
}

.qn-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-bottom: 1px solid #ffe082;
}

.qn-group-title {
    font-weight: 600;
    color: #e65100;
    font-size: 14px;
}

.qn-group-date {
    font-size: 12px;
    color: #888;
}

.qn-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f5f5;
}

.qn-item:last-child {
    border-bottom: none;
}

.qn-item-info {
    flex: 1;
}

.qn-item-name {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.qn-item-detail {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

.qn-item-delete {
    background: none;
    border: none;
    color: #e53935;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
}

.qn-item-delete:hover {
    background: #ffebee;
    border-radius: 4px;
}
