/* Główny kontener produktów wirtualnych */
.nc-virtual-products {
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.nc-virtual-products h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Pojedynczy produkt */
.nc-virtual-product-item {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nc-virtual-product-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nc-virtual-product-item h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.nc-purchase-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.nc-product-description {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

/* Sekcja plików do pobrania */
.nc-product-downloads {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
}

.nc-product-downloads h4 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.nc-product-downloads ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nc-product-downloads li {
    margin-bottom: 8px;
}

.nc-download-btn {
    display: inline-block;
    background-color: #2271b1;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nc-download-btn:hover {
    background-color: #135e96;
    color: #fff;
    text-decoration: none;
}

/* Komunikaty */
.nc-virtual-products p:only-child {
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 4px;
    text-align: center;
    color: #666;
} 