.forumpay-pgw {
  &-payment_status {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding: 20px;
      font-weight: 600;

    &-timer {
      color: var(--pgw-color-primary);

      &-container {
        display: flex;
        align-items: center;

        &-remaining_time {
          font-size: 24px;
        }

        &-icon {
          width: 36px;
          height: 36px;
          margin-right: 5px;
        }
      }
    }

    &-row {
      border-bottom: 1px solid var(--pgw-color-gray-4);
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 15px;
      margin-bottom: 15px;

      &-processing-label {
        color: var(--pgw-color-primary);
      }

      &-row-tag {
        font-size: 18px;
        color: var(--pgw-color-black);
        margin-top: 10px;
      }

      small {
        color: var(--pgw-color-gray-2);
      }

      &-text {
        color: var(--pgw-color-primary);
        font-size: 13px;
        margin: 0;
      }
    }

    &-list {
      li {
        font-size: .8em;
        margin-bottom: 0;
        span {
          font-weight: 900;
        }
      }
    }
  }
}

// Payment ID Section
.payment-id-section {
  width: 100%;
  padding: 6px 12px;
  background: var(--pgw-color-background-secondary);
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: normal;

  .payment-id-label {
    font-size: 11px;
    color: var(--pgw-color-black);
    display: block;
  }

  .payment-id-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .payment-id-value {
    font-size: 11px;
    font-family: monospace;
    color: var(--pgw-color-black);
    word-break: break-all;
    flex: 1;
  }
}

// Payment state classes for Container component
.payment-state-cancelled,
.payment-state-blocked {
  font-weight: 600 !important;
  color: var(--pgw-color-text-danger);
}

.payment-state-confirmed,
.payment-state-zero_confirmed {
  font-weight: 600 !important;
  color: var(--pgw-color-text-success);
}

// Final payment details
.payment-details-final {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;

  .payment-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;

    .detail-label {
      font-weight: 500;
      color: var(--pgw-color-gray-2);
    }

    .detail-value {
      font-weight: 600;
      color: var(--pgw-color-black);
    }
  }
}

// Powered by ForumPay
.powered-by-forumpay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 16px;

  span {
    font-size: 14px;
    font-weight: 400;
    color: var(--pgw-color-gray-2);
  }

  svg {
    height: 18px;
    width: auto;
  }
}
