/**
 * CSS for JavaScript Hit Counter
 * Styled to match the existing footer design
 */

.hit-counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 5px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hit-counter-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.hit-counter-number {
    font-size: 14px;
    font-weight: bold;
    color: #e4b02a;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
    min-width: 60px;
    text-align: center;
}

.hit-counter-label {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
}

.hit-counter-link {
    font-size: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.hit-counter-link:hover {
    color: var(--highlight-color);
}

/* Light theme adjustments */
.light-theme .hit-counter-number {
    text-shadow: none;
    background: rgba(0, 0, 0, 0.1);
}

.light-theme .hit-counter-label {
    color: #333333;
}

.light-theme .hit-counter-link {
    color: #333333;
}

.light-theme .hit-counter-link:hover {
    color: #d49a1f;
}