/**
 * Frontend Styles for Developer Starter Kit
 */

/* View Count Display */
.vcp-views-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #64748b;
    padding: 4px 0;
}

.vcp-views-count .vcp-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.vcp-views-count .vcp-label {
    font-weight: 500;
}

.vcp-views-count .vcp-number {
    font-weight: 600;
    color: #1e293b;
}

/* Top Posts List */
.vcp-top-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vcp-top-posts li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.vcp-top-posts li:last-child {
    border-bottom: none;
}

.vcp-top-posts a {
    text-decoration: none;
    color: inherit;
}

.vcp-top-posts a:hover {
    color: #3b82f6;
}

.vcp-list-views {
    color: #94a3b8;
    font-size: 13px;
    margin-left: 5px;
}

/* No Results */
.vcp-no-results {
    color: #94a3b8;
    font-style: italic;
    padding: 10px 0;
}

/* Widget Styling */
.widget .vcp-views-count {
    font-size: 13px;
}

.widget .vcp-top-posts li {
    padding: 8px 0;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .vcp-views-count {
        color: #94a3b8;
    }

    .vcp-views-count .vcp-number {
        color: #e2e8f0;
    }

    .vcp-top-posts li {
        border-color: #334155;
    }
}
