.ap-partitions-wrapper {
    font-family: 'Noto Sans', sans-serif;
    color: #333;
}

.ap-search {
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.ap-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.ap-filters select {
    flex: 1;
    min-width: 180px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.ap-partitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.ap-partition-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    padding: 12px 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s ease;
}

.ap-partition-item:hover {
    background: #f0f8ff;
}

.ap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ap-row-top {
    margin-bottom: 6px;
}

.ap-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.ap-title .dashicons {
    font-size: 20px;
    color: #003366;
}

.ap-title strong {
    color: #003366;
    font-weight: 600;
}

.ap-download-btn {
    background-color: #003366;
    color: white;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.ap-download-btn:hover {
    background-color: #00254d;
    text-decoration: none;
}

.ap-author {
    font-size: 13px;
    color: #555;
}

.ap-download-count {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ap-partitions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ap-partitions-grid {
        grid-template-columns: 1fr;
    }
    .ap-filters {
        flex-direction: column;
    }
}