/* Delivery Notes Styling */
.hinweise-lieferung {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid var(--wd-primary-color, #6b7d5c);
    border-radius: 4px;
}

.hinweise-lieferung strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.hinweise-lieferung p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.hinweise-lieferung p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hinweise-lieferung {
        margin: 15px 0;
        padding: 12px;
    }
}

