/* Product PDF and Colors Styles */
.product-pdf-download {
    margin: 20px 0;
}

.product-pdf-button {
    display: inline-flex;
    align-items: center;
    background-color: #f7f7f7;
    color: #515151;
    border: 1px solid #ccc;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.product-pdf-button:hover {
    background-color: #ebe9eb;
    color: #515151;
}

.product-pdf-button .dashicons {
    margin-left: 5px;
}

.product-colors {
    margin: 20px 0;
}

.color-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.color-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: block;
    margin-bottom: 5px;
}

.color-name {
    font-size: 12px;
    color: #666;
}