/* Article Custom Styles for Zib 123Pan Plugin */

/* Article container styling */
.zib-123pan-article {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Article header */
.zib-123pan-article-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.zib-123pan-article-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Article content */
.zib-123pan-article-content {
    line-height: 1.6;
    color: #555;
}

.zib-123pan-article-content p {
    margin-bottom: 12px;
}

/* File list styling */
.zib-123pan-file-list {
    margin-top: 20px;
}

.zib-123pan-file-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.zib-123pan-file-item:hover {
    background: #e9ecef;
}

.zib-123pan-file-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #6c757d;
}

.zib-123pan-file-name {
    flex: 1;
    font-weight: 500;
    color: #495057;
}

.zib-123pan-file-size {
    font-size: 12px;
    color: #6c757d;
    margin-left: 10px;
}

/* Download button */
.zib-123pan-download-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.zib-123pan-download-btn:hover {
    background: #005a87;
}

/* Responsive design */
@media (max-width: 768px) {
    .zib-123pan-article {
        margin: 10px 0;
        padding: 12px;
    }
    
    .zib-123pan-article-title {
        font-size: 16px;
    }
    
    .zib-123pan-file-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .zib-123pan-file-size {
        margin-left: 0;
        margin-top: 5px;
    }
}