.spp-order-lookup {
    max-width: 700px;
    margin: 0 auto;
}
.spp-lookup-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}
.spp-lookup-form h3 {
    margin-top: 0;
}
.spp-form-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}
.spp-form-row input[type="email"] {
    padding: 0 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 280px;
    max-width: 100%;
    height: 48px;
    box-sizing: border-box;
    line-height: 48px;
}
.spp-form-row .spp-button {
    height: 48px;
    line-height: 24px;
}
.spp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    box-sizing: border-box;
}
.spp-button:hover {
    background: #555;
    color: #fff;
}
.spp-button-primary {
    background: #13a097;
}
.spp-button-primary:hover {
    background: #0f8a82;
}
.spp-error {
    color: #dc3545;
    margin-top: 15px;
}
.spp-orders-list {
    margin-top: 20px;
}
.spp-order-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}
.spp-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.spp-order-header h4 {
    margin: 0;
}
.spp-status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}
.spp-status.status-pending {
    background: #fff3cd;
    color: #856404;
}
.spp-status.status-processing,
.spp-status.status-deposit-paid {
    background: #e6f7f6;
    color: #0f8a82;
}
.spp-status.status-completed,
.spp-status.status-paid-in-full,
.spp-status.status-balance-paid {
    background: #d4f5f3;
    color: #0a6b64;
}
.spp-status.status-balance-due {
    background: #f8d7da;
    color: #721c24;
}
.spp-status.status-po {
    background: #e8eaf6;
    color: #3949ab;
}
.spp-order-type {
    font-size: 13px;
    color: #666;
    margin: 5px 0;
}
.spp-order-meta {
    margin: 15px 0;
}
.spp-order-meta p {
    margin: 5px 0;
}
.spp-order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.spp-lookup-another {
    text-align: center;
    margin-top: 20px;
}
.spp-order-detail {
    background: #fff;
    padding: 20px;
}
.spp-detail-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.spp-detail-section:last-child {
    border-bottom: none;
}
.spp-detail-section h4 {
    margin-top: 0;
    color: #333;
}
.spp-items-table {
    width: 100%;
    border-collapse: collapse;
}
.spp-items-table th,
.spp-items-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}
.spp-items-table th {
    background: #f8f9fa;
}
.spp-items-table tfoot td {
    font-weight: bold;
}
.spp-balance-info {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffc107;
}
.spp-paid-badge {
    color: #155724;
    font-weight: bold;
}
.spp-detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
address {
    font-style: normal;
    line-height: 1.6;
}
.spp-payment-choice-wrapper {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.spp-payment-choice-wrapper h3 {
    margin-top: 0;
}
.spp-payment-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.spp-payment-option {
    flex: 1;
    min-width: 200px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.spp-payment-option:hover {
    border-color: #999;
}
.spp-payment-option.selected {
    border-color: #13a097;
    background: #f0f7fc;
}
.spp-payment-option input {
    margin-right: 10px;
}
.spp-option-content {
    display: block;
}
.spp-option-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}
.spp-option-amount {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #13a097;
    margin: 10px 0;
}
.spp-option-desc {
    display: block;
    font-size: 13px;
    color: #666;
}
