/* Visitor Counter Styles */
.visitor-counter {
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.visitor-counter p {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.visitor-counter i {
    margin-right: 0.5rem;
    color: #60A5FA;
}

#visitor-count {
    font-weight: 600;
    color: #F3F4F6;
    transition: color 0.3s ease;
}

#visitor-count:hover {
    color: #60A5FA;
}

/* Loading animation */
.visitor-counter .loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .visitor-counter p {
        font-size: 0.8rem;
    }
}
