/**
 * Visitor Counter Styles
 */

#visitor-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #014903 0%, #026b05 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(1, 73, 3, 0.3);
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out;
}

#visitor-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(1, 73, 3, 0.4);
}

.visitor-counter-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.visitor-counter-wrapper i {
    font-size: 24px;
    color: #f9ca24;
}

.visitor-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.visitor-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.visitor-count {
    font-size: 20px;
    font-weight: 700;
    color: #f9ca24;
    margin-top: 2px;
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #visitor-counter {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
    }
    
    .visitor-counter-wrapper i {
        font-size: 20px;
    }
    
    .visitor-label {
        font-size: 10px;
    }
    
    .visitor-count {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #visitor-counter {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
    }
    
    .visitor-counter-wrapper {
        gap: 8px;
    }
    
    .visitor-counter-wrapper i {
        font-size: 18px;
    }
    
    .visitor-label {
        font-size: 9px;
    }
    
    .visitor-count {
        font-size: 16px;
    }
}

/* Alternative: Top bar style (commented out by default) */
/*
#visitor-counter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #014903;
    color: white;
    padding: 8px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.visitor-counter-wrapper {
    justify-content: center;
}
*/
