/* ============================================================================
   交易列表模块样式 (Transaction List Module)
   ============================================================================ */

/* 汇总模态框 */
#statisticsModal .modal-header {
    padding: 1rem 1.5rem;
}

#statisticsChart {
    position: relative;
}

.daily-detail-row {
    background-color: #f8f9fa;
}

.daily-detail-container {
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.daily-detail-container table {
    margin-bottom: 0;
}

#statisticsDataBody tr {
    cursor: pointer;
    transition: background-color 0.2s;
}

#statisticsDataBody tr:hover {
    background-color: #f1f1f1;
}

.main-cost {
    color: #dc3545;
    font-size: 14px;
    font-weight: bold;
}

.additional-cost {
    color: #6c757d;
    font-size: smaller;
    font-weight: lighter;
}

