.divplus-buy-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.divplus-buy-button:hover {
    background-color: #45a049;
}

.divplus-buy-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.divplus-charge-wallet {
    display: flex;
    gap: 10px;
	
}

.divplus-amount-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e0e0f5 !important;
    border-radius: 4px;
    font-size: 16px;
}

.divplus-charge-button {
    background-color: #51bf60;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.divplus-charge-button:hover {
    background-color: #0b7dda;
}

/* استایل برای دکمه تسک */
.divplus-task-button {
    background-color: #FF9800;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.divplus-task-button:hover {
    background-color: #F57C00;
}

/* استایل برای جدول تاریخچه تراکنش‌ها */
.divplus-transactions-history {
    margin: 20px 0;
}

.divplus-current-balance {
    background-color: #E3F2FD;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 18px;
}

.divplus-transactions-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.divplus-transactions-table th,
.divplus-transactions-table td {
    padding: 10px;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

.divplus-transactions-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.transaction-positive .positive {
    color: #4CAF50;
    font-weight: bold;
}

.transaction-negative .negative {
    color: #f44336;
    font-weight: bold;
}

.status-badge {
    background-color: #2196F3;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
}

/* دکمه تسک انجام شده */
.divplus-task-button.task-completed {
    background-color: #9E9E9E;
    cursor: not-allowed;
    opacity: 0.7;
}

.divplus-task-button.task-completed:hover {
    background-color: #9E9E9E;
}

/* وضعیت publish در جدول */
.status-publish {
    /*background-color: #4CAF50;*/
}