/* Frontend CSS */
.product-pdfs {
    margin: 20px 0;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
}

.product-pdfs h3 {
    margin-top: 0;
    color: #30a9de;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 12px;
}

.pdf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdf-item {
    margin-bottom: 10px;
}

.pdf-download-link {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.pdf-download-link:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
    text-decoration: none;
}

.pdf-icon {
    font-size: 20px;
    margin-right: 10px;
}

.pdf-title {
    flex: 1;
    font-weight: 500;
}

.pdf-download {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.7;
}

.pdf-download-link:hover .pdf-download {
    opacity: 1;
}

@media (max-width: 768px) {
    .pdf-download-link {
        flex-direction: column;
        text-align: center;
    }
    
    .pdf-icon {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .pdf-title {
        margin-bottom: 5px;
    }
}