.cache-statistics {
    padding: 10px 15px;
    font-size: 14px;
}

.cache-statistics h3 {
    margin-top: 5px;
    margin-bottom: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stat-box {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}

.stat-box h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #333;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.stat-label {
    font-weight: bold;
}

.cache-controls {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.cache-control-btn {
    background-color: #f44336;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cache-control-btn:hover {
    background-color: #d32f2f;
}
