#inquiry-system-wrapper {
    max-width: 600px;
    margin: 20px auto;
    font-family: inherit;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#inquiry-search-box h3 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-inquiry {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-inquiry:hover {
    background-color: #005177;
}

#inquiry-loading {
    text-align: center;
    margin-top: 10px;
    color: #666;
}

/* بخش نمایش نتایج */
#inquiry-result {
    margin-top: 20px;
    border-top: 2px solid #eee;
    padding-top: 20px;
    animation: fadeIn 0.5s;
}

.result-card {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
}

.result-image {
    text-align: center;
    margin-bottom: 15px;
}

.result-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: bold;
    color: #555;
}

.result-value {
    color: #333;
}

.error-message {
    text-align: center;
    color: #d63638;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #d63638;
}

.btn-reset {
    margin-top: 20px;
    background-color: #666;
}
.btn-reset:hover {
    background-color: #444;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
