.pcdm-category-container {
    margin: 20px 0;
}

.pcdm-download-section {
    margin-bottom: 20px;
    text-align: right;
}

.pcdm-download-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pcdm-download-button:hover {
    background: #005a87;
}

.pcdm-download-options {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 5px;
}

.pcdm-download-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.pcdm-download-link:last-child {
    border-bottom: none;
}

.pcdm-download-link:hover {
    background: #f5f5f5;
}

/* Table Style */
.pcdm-category-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.pcdm-category-table th,
.pcdm-category-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pcdm-category-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.pcdm-category-table tr:hover {
    background: #f8f9fa;
}

/* Grid Style */
.pcdm-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pcdm-category-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.pcdm-category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pcdm-category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pcdm-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcdm-category-content {
    padding: 20px;
}

.pcdm-category-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.pcdm-category-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pcdm-category-meta {
    font-size: 14px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .pcdm-category-table {
        font-size: 14px;
    }
    
    .pcdm-category-table th,
    .pcdm-category-table td {
        padding: 8px;
    }
    
    .pcdm-category-grid {
        grid-template-columns: 1fr;
    }
}