.gold-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gold-price-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.price-label {
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
    color: #2271b1;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    color: #444;
}

.form-row input {
    width: 95%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.amount-preview {
    margin-top: 8px;
    color: #666;
    font-size: 14px;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #135e96;
}

.error {
    background: #f8d7da;
    color: #842029;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.success {
    background: #d1e7dd;
    color: #0f5132;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* استایل برای فرمت‌بندی اعداد */
.number-format {
    text-align: left;
    direction: ltr;
}

/* استایل برای نمایش موجودی */
.wallet-balance {
    background: #e9ecef;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.wallet-balance label {
    color: #666;
    margin-bottom: 5px;
}

.wallet-balance .balance {
    font-size: 18px;
    font-weight: bold;
    color: #198754;
}

/* استایل‌های جدول لاگ در پنل ادمین */
.wrap .gold-log-viewer {
    max-width: 100%;
    margin: 20px 0;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wrap .log-table-container {
    overflow-x: auto;
    margin: 0 -20px; /* برای جلوگیری از اسکرول افقی در موبایل */
    padding: 0 20px;
}

.wrap .log-table {
    width: 100%;
    min-width: 800px; /* حداقل عرض برای جلوگیری از شکستن جدول */
}

.wrap .log-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 600px; /* عرض محدود برای فیلترها */
}

/* بهبود نمایش داده‌های JSON */
.wrap .log-data pre {
    max-height: 200px;
    overflow-y: auto;
    direction: ltr;
    text-align: left;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.4;
}

/* استایل برای ستون‌های جدول */
.wrap .log-table th {
    background: #f0f0f1;
    border-bottom: 1px solid #c3c4c7;
    text-align: right;
    padding: 12px;
}

.wrap .log-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f1;
    vertical-align: top;
}

/* عرض ستون‌های خاص */
.wrap .log-date {
    width: 150px;
    white-space: nowrap;
}

.wrap .log-type {
    width: 120px;
}

.wrap .log-message {
    width: 25%;
}

.wrap .log-data {
    width: auto;
}

.log-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.page-number {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
}

.page-number.current {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.page-number:hover:not(.current) {
    background: #f8f9fa;
}

/* استایل‌های تاریخچه تراکنش‌ها */
.gold-history {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 20px auto;
    max-width: 800px;
}

.gold-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.gold-history-header h2 {
    margin: 0;
    font-size: 1.5em;
    color: #2271b1;
}

.balance-info {
    color: #666;
}

.current-balance {
    font-weight: bold;
    color: #198754;
}

.gold-history-table {
    width: 100%;
    border-collapse: collapse;
}

.gold-history-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: right;
    border-bottom: 2px solid #dee2e6;
    font-weight: bold;
    color: #444;
}

.gold-history-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.transaction-row:hover {
    background: #f8f9fa;
}

.amount-value {
    font-family: monospace;
    font-size: 1.1em;
    direction: ltr;
    display: inline-block;
}

.amount-value.positive {
    color: #198754;
}

.amount-value.negative {
    color: #dc3545;
}

.no-transactions {
    text-align: center;
    padding: 30px;
    color: #666;
    background: #f8f9fa;
    border-radius: 4px;
}

.date {
    direction: ltr;
    text-align: right;
    white-space: nowrap;
    color: #666;
}

.type {
    font-weight: 500;
}

/* استایل‌های نتیجه پرداخت */
.gold-payment-result {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.icon-success {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #198754;
    color: #fff;
    font-size: 40px;
    margin: 0 auto 20px;
}

.icon-failed {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 40px;
    margin: 0 auto 20px;
}

.gold-payment-result h2 {
    margin-bottom: 15px;
    color: #333;
}

.gold-payment-result .actions {
    margin-top: 30px;
} 