.return-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.return-status.initiated {
    background: #f0f6fc;
    color: #0073aa;
}

.return-status.in-transit {
    background: #fff8e5;
    color: #996300;
}

.return-status.returned {
    background: #edfaef;
    color: #00844a;
}

.woocommerce-orders-table__cell .button {
    margin-right: 5px;
}

.woocommerce-orders-table__cell .button:last-child {
    margin-right: 0;
}

#rental-return-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-return-content {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.return-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.return-item label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.non-return-reason {
    margin-top: 10px;
}

.non-return-reason textarea {
    width: 100%;
    min-height: 80px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.return-actions {
    margin-top: 20px;
    text-align: right;
}

.return-actions button {
    margin-left: 10px;
}

.initiate-return {
    margin-top: 20px;
} 