/* =======================================================================
   Visitor Counter Pro — Frontend Widget Styles
   ======================================================================= */

.vcp-widget-wrap {
    max-width: 420px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.25);
    border: 1px solid #334155;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.vcp-widget-header {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    padding: 16px 20px;
    text-align: center;
    position: relative;
}

.vcp-widget-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin: 0;
}

.vcp-widget-header::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.vcp-widget-cards {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vcp-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    background: var(--card-color, #334155);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.vcp-card-icon {
    font-size: 26px;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    opacity: .85;
}

.vcp-card-body { flex: 1; }
.vcp-card-label { font-size: 12px; opacity: .8; font-weight: 500; }
.vcp-card-value { font-size: 24px; font-weight: 700; line-height: 1.2; }
