/* Website Activity Tracker - Frontend Counter Styles */

.wat-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.wat-counter-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

.wat-counter-label {
    font-weight: 500;
    color: #666;
}

.wat-counter-number {
    font-weight: 700;
    color: #333;
}

/* Default Style */
.wat-counter-default {
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.wat-counter-default .wat-counter-icon {
    color: #666;
}

.wat-counter-default .wat-counter-number {
    color: #2271b1;
}

/* Minimal Style */
.wat-counter-minimal {
    padding: 4px 0;
    color: #666;
}

.wat-counter-minimal .wat-counter-icon {
    color: #999;
}

.wat-counter-minimal .wat-counter-label {
    color: #999;
    font-weight: 400;
}

.wat-counter-minimal .wat-counter-number {
    color: #333;
    font-weight: 600;
}

/* Badge Style */
.wat-counter-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wat-counter-badge .wat-counter-icon {
    color: #fff;
}

.wat-counter-badge .wat-counter-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.wat-counter-badge .wat-counter-number {
    color: #fff;
    font-weight: 700;
}

/* Modern Style */
.wat-counter-modern {
    padding: 10px 16px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #2271b1;
    box-shadow: 0 2px 8px rgba(34, 113, 177, 0.1);
    transition: all 0.3s ease;
}

.wat-counter-modern:hover {
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.2);
    transform: translateY(-1px);
}

.wat-counter-modern .wat-counter-icon {
    color: #2271b1;
}

.wat-counter-modern .wat-counter-label {
    color: #666;
    font-weight: 500;
}

.wat-counter-modern .wat-counter-number {
    color: #2271b1;
    font-weight: 700;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wat-counter {
        font-size: 13px;
    }
    
    .wat-counter-modern .wat-counter-number {
        font-size: 15px;
    }
}
