.wx-container {
    max-width: 600px;
    margin: 40px auto;
    font-family: inherit;
}
#wx-track-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
#wx_kargo_no {
    flex: 1;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}
#wx_kargo_no:focus {
    border-color: #2c3e50;
}
#wx_btn {
    padding: 0 30px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
#wx_btn:hover {
    background: #1a252f;
}
#wx_btn:disabled {
    background: #95a5a6;
    cursor: wait;
}
#wx-result {
    display: none;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}
.wx-summary {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
}
.wx-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: 15px;
}
.wx-summary-row:last-child {
    border-bottom: none;
}
.wx-summary-label {
    color: #868e96;
    font-weight: 600;
}
.wx-summary-value {
    color: #2c3e50;
    text-align: right;
    word-break: break-word;
}
.wx-history-title {
    margin: 0 0 10px;
    font-size: 17px;
    color: #2c3e50;
}
.wx-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wx-list li {
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 15px;
    color: #495057;
}
.wx-date {
    font-size: 12px;
    color: #888;
}
.wx-record {
    margin-top: 4px;
}
.wx-loc {
    color: #2c3e50;
    font-weight: 600;
}
.wx-list li:last-child {
    border-bottom: none;
}
.wx-error {
    color: #e74c3c;
    font-weight: bold;
    text-align: center;
}
.wx-loading {
    color: #34495e;
    text-align: center;
    font-style: italic;
}