/* Blazing Static Cache - Frontend Styles */

/* Cache indicator (optional, can be shown in debug mode) */
.blazing-cache-indicator {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
    background: #2271b1;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    z-index: 9999;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.blazing-cache-indicator:hover {
    opacity: 1;
}

/* Hide cache indicator by default, show only in debug mode */
body:not(.blazing-debug-mode) .blazing-cache-indicator {
    display: none;
}
