/* Styles for the ProSci Datasheet Downloader Plugin */

.product-datasheet {
    margin-top: 15px;
    margin-bottom: 15px;
    clear: both;
}

.product-datasheet a {
    display: inline-flex;
    align-items: center;
    background-color: #34603A; /* ProSci green color */
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-datasheet a:hover,
.product-datasheet a:focus {
    background-color: #264730;
    color: #ffffff;
    text-decoration: none;
}

/* Add download icon */
.product-datasheet a:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M8 12l-4-4h2.5V3h3v5H12L8 12z'/%3E%3Cpath d='M14 13v1H2v-1h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Product page specific styles */
.woocommerce div.product .product-datasheet {
    margin: 15px 0;
}

/* Remove hide class styling from original theme */
.product-datasheet-hide {
    display: block !important;
} 