/* Trans Express Delivery Styles */
.trans-express-delivery-section {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.trans-express-api-settings {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.trans-express-api-settings h4 {
    margin-top: 0;
    color: #333;
}

.api-credentials-group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.api-credentials-group input[type="text"],
.api-credentials-group input[type="password"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.api-credentials-group button {
    padding: 8px 15px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.api-credentials-group button:hover {
    background: #005a87;
}

.test-trans-express-connection-btn {
    background: #00a32a !important;
}

.test-trans-express-connection-btn:hover {
    background: #008a20 !important;
}

.dispatch-trans-express-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dispatch-trans-express-btn:hover {
    background: #c0392b;
}

.dispatch-trans-express-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.trans-express-mapping-info {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
}

.trans-express-mapping-info h4 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.trans-express-mapping-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.trans-express-mapping-table th,
.trans-express-mapping-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.trans-express-mapping-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.trans-express-mapping-table td:first-child {
    font-weight: 500;
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
    .api-credentials-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dispatch-trans-express-btn {
        margin-left: 0;
        margin-top: 10px;
    }
}