/* Product Document Widget Styles */

.pd-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background-color: #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
}

.pd-card:hover {
    background-color: #e8e8e8;
    text-decoration: none;
}

.pd-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #666;
    line-height: 1;
}

.pd-icon svg {
    width: 40px;
    height: 40px;
    fill: #666;
}

.pd-icon i {
    font-size: inherit;
    color: inherit;
}

.pd-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.pd-name {
    font-size: 16px;
    font-weight: 500;
    color: #6b3fa0;
    line-height: 1.4;
}

.pd-size {
    font-size: 14px;
    color: #999;
    line-height: 1.4;
}

.pd-no-doc {
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 767px) {
    .pd-card {
        padding: 15px 20px;
        gap: 15px;
    }
}
