.order-status-checker-form {
    max-width: 500px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.order-status-checker-form h3 {
    margin-top: 0;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group button {
    background: #007cba;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.form-group button:hover {
    background: #005a87;
}

.form-group button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#order-checker-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

#order-checker-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#order-checker-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.order-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    background: white;
    border: 1px solid #ddd;
}

.order-details .detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.detail-row .label {
    font-weight: bold;
    color: #555;
}

.detail-row .value {
    color: #333;
}

.status {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.status-success {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-other {
    background: #f8d7da;
    color: #721c24;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}