/* Gorilla Shipment - Frontend */
.gs-order-tracking {
    margin-top: 24px;
}
.gs-order-tracking h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.gs-tracking-card {
    background: #f8f9fc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
}
.gs-tracking-info {
    margin-bottom: 16px;
}
.gs-tracking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.gs-tracking-row:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}
.gs-label {
    font-size: 13px;
    color: #6b7280;
}
.gs-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}
.gs-mono {
    font-family: monospace;
    letter-spacing: 0.5px;
}
.gs-tracking-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
}
.gs-tracking-btn:hover {
    opacity: 0.85;
    text-decoration: none;
    color: inherit;
}

/* Action button in orders list */
.woocommerce-orders-table .woocommerce-button.button.gs_tracking {
    white-space: nowrap;
}
