.shipstation-tracking {
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    max-width: 750px;
    margin: 25px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.shipstation-tracking h3 {
    margin: 0 0 20px 0;
    color: #1a1a1a;
    font-size: 26px;
    font-weight: 700;
}

.shipstation-tracking h4 {
    margin: 20px 0 15px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.tracking-error {
    color: #d32f2f;
    background: #ffebee;
    padding: 15px 20px;
    border-radius: 6px;
    border-left: 4px solid #d32f2f;
    margin: 15px 0;
}

.tracking-status {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.status-label {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.status-description {
    margin: 5px 0 0 0;
    font-size: 14px;
    opacity: 0.95;
}

/* Status colors */
.status-label-created,
.status-accepted,
.status-not-yet-in-system {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: #4a5568;
}

.status-shipped,
.status-in-transit {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #0d47a1;
}

.status-out-for-delivery {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    color: #f57f17;
}

.status-attempted-delivery,
.status-available-for-pickup {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
    color: #e65100;
}

.status-delivered {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    color: #1b5e20;
}

.status-cancelled,
.status-exception {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    color: #b71c1c;
}

.status-unknown {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #616161;
}

.tracking-details {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 14px;
}

.detail-value {
    font-weight: 500;
    color: #1f2937;
    font-size: 15px;
    text-align: right;
}

.tracking-number {
    font-family: 'Courier New', monospace;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.delivery-date {
    color: #0d47a1;
    font-weight: 600;
}

.delivered {
    color: #1