/**
 * Product Attachments Styling
 * Simple CSS for product attachment list - no Tailwind build required
 */

.product-attachments {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d1d5db;
}

.product-attachments-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.product-attachments-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-attachment-item {
    margin-top: 0.625rem; /* 10px */
}

.product-attachment-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.product-attachment-link:hover {
    color: #111827;
}

.product-attachment-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.product-attachment-label {
    flex: 1;
    min-width: 0;
}

.product-attachment-size {
    font-size: 0.875rem;
    color: #6b7280;
    flex-shrink: 0;
}

