/* 统计功能样式 */

.website-statistics-container {
    background-color: rgba(76, 175, 80, 0.1);
    border-top: 1px solid #4CAF50;
    padding: 10px 0;
    margin-top: 10px;
}

.website-statistics {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 120px;
}

.stats-label {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.stats-value {
    color: #4CAF50;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.stats-note {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .website-statistics {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .stats-item {
        gap: 3px;
        min-width: auto;
    }
    
    .stats-label {
        font-size: 12px;
    }
    
    .stats-value {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .website-statistics {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .stats-item {
        gap: 5px;
        justify-content: center;
    }
}