/* PV Counter Frontend Widget Styles */

/* Main container */
.pvc-frontend-widget {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Widget title */
.pvc-widget-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
    text-align: center;
}

/* Chart container */
.pvc-chart-container {
    margin-bottom: 20px;
    text-align: center;
}

/* Top posts container */
.pvc-top-posts-container {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Top posts heading */
.pvc-top-posts-container h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

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

.pvc-top-posts-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.pvc-top-posts-list li a {
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
    display: block;
}

.pvc-top-posts-list li a:hover {
    text-decoration: underline;
}

.pvc-top-posts-list li .pvc-view-count {
    font-size: 0.9em;
    color: #666;
    margin-left: 8px;
    font-style: italic;
}

/* Loading states */
.pvc-frontend-widget .pvc-chart-container,
.pvc-frontend-widget .pvc-top-posts-list {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.pvc-frontend-widget .pvc-chart-container.loading,
.pvc-frontend-widget .pvc-top-posts-list.loading {
    opacity: 0.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .pvc-frontend-widget {
        padding: 10px;
    }
    
    .pvc-widget-title {
        font-size: 1.3em;
    }
    
    .pvc-chart-container canvas {
        height: 180px !important;
        width: 100% !important;
    }
    
    .pvc-top-posts-container h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .pvc-frontend-widget {
        padding: 8px;
    }
    
    .pvc-widget-title {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .pvc-top-posts-container h3 {
        font-size: 1em;
    }
    
    .pvc-top-posts-list li {
        padding: 6px 0;
        font-size: 0.9em;
    }
    
    .pvc-top-posts-list li .pvc-view-count {
        display: block;
        margin-top: 4px;
    }
}
