.transactions-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.transactions-header {
  margin-bottom: 2rem;
}

.transactions-header h2 {
  font-family: 'Manrope', 'Tajawal', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f5f2ea 40%, #e8c468);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
}

.transactions-header p {
  font-size: 0.9rem;
  color: rgba(245,242,234,0.42);
}

/* التابز */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,242,234,0.5);
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  transition: all 0.2s;
}

.tab:hover {
  border-color: rgba(232,196,104,0.35);
  color: #e8c468;
}

.tab.active {
  background: rgba(232,196,104,0.12);
  border-color: #e8c468;
  color: #e8c468;
}

/* بطاقة المعاملة */
.transaction-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.transaction-card:hover {
  border-color: rgba(232,196,104,0.18);
  box-shadow: 0 4px 20px rgba(232,196,104,0.04);
}

.t-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.t-title {
  font-family: 'Manrope', 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #f5f2ea;
}

.t-party {
  font-size: 0.8rem;
  color: rgba(245,242,234,0.4);
}

.t-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.t-amount {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8c468;
}

.t-date {
  font-size: 0.8rem;
  color: rgba(245,242,234,0.3);
}

/* حالات المعاملة */
.t-status {
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.t-status.pending {
  background: rgba(232,196,104,0.1);
  color: #e8c468;
  border: 1px solid rgba(232,196,104,0.22);
}

.t-status.accepted {
  background: rgba(56,138,221,0.1);
  color: #6fb3f5;
  border: 1px solid rgba(56,138,221,0.22);
}

.t-status.success {
  background: rgba(29,158,117,0.1);
  color: #2ed8a8;
  border: 1px solid rgba(29,158,117,0.22);
}

.t-status.rejected {
  background: rgba(231,76,60,0.08);
  color: #f07060;
  border: 1px solid rgba(231,76,60,0.2);
}

/* أزرار الإجراءات */
.t-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.action-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Tajawal', sans-serif;
  transition: opacity 0.2s, transform 0.15s;
}

.action-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.action-btn.accept {
  background: rgba(29,158,117,0.15);
  color: #2ed8a8;
  border: 1px solid rgba(29,158,117,0.25);
}

.action-btn.reject {
  background: rgba(231,76,60,0.08);
  color: #f07060;
  border: 1px solid rgba(231,76,60,0.2);
}

.action-btn.complete {
  background: linear-gradient(135deg, #f3d791, #c9982e);
  color: #070a14;
}

/* نتيجة التقييم */
.review-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(245,242,234,0.55);
  flex-wrap: wrap;
}

.sentiment-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.sentiment-badge.positive {
  background: rgba(29,158,117,0.12);
  color: #2ed8a8;
}

.sentiment-badge.negative {
  background: rgba(231,76,60,0.08);
  color: #f07060;
}

.sentiment-badge.neutral {
  background: rgba(255,255,255,0.07);
  color: rgba(245,242,234,0.55);
}
