.wooson-deliveries-wrapper {
    margin: 2em 0;
}

.wooson-deliveries-wrapper h3 {
    margin-bottom: 1em;
}

.wooson-deliveries-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.wooson-delivery-item {
    background: var(--bg-color, #f9f9f9);
    border: 1px solid var(--highlight-color, #eee);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wooson-delivery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.delivery-date {
    margin-bottom: 15px;
}

.delivery-date .month {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color, #e67e22);
    text-transform: uppercase;
}

.delivery-date .year {
    display: block;
    font-size: 1.1em;
    color: #777;
}

.delivery-info {
    border-top: 1px solid var(--highlight-color, #eee);
    padding-top: 15px;
}

.run-number {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.delivery-details-link {
    display: inline-block;
    background: var(--primary-color, #e67e22);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background 0.2s;
}

.delivery-details-link:hover {
    background: var(--link-hover-color, #d35400);
    color: #fff;
}
