/* Review Transfer Modal Styles */
#tsubs-review-transfer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 17, 23, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.tsubs-rt-section {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  padding: 24px;
  position: relative;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.tsubs-rt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.tsubs-rt-back-btn,
.tsubs-rt-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #121117;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tsubs-rt-content {
  text-align: left;
}

.tsubs-rt-avatars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.tsubs-rt-avatar {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.tsubs-rt-arrow {
  color: #121117;
  display: flex;
  align-items: center;
}

.tsubs-rt-title {
  font-size: 24px;
  font-weight: 700;
  color: #121117;
  margin: 0 0 32px 0;
  line-height: 1.2;
}

.tsubs-rt-summary-table {
  margin-bottom: 32px;
}

.tsubs-rt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
  color: #121117;
  font-weight: 500;
}

.tsubs-rt-val {
  font-weight: 700;
}

.tsubs-rt-divider {
  height: 1.5px;
  background: #eeeef3;
  margin: 16px 0;
}

.tsubs-rt-row.highlight {
  font-weight: 700;
  margin-top: 16px;

  &::before {
    content: none;
  }
}

.tsubs-rt-next-steps h2 {
  font-size: 18px;
  font-weight: 700;
  color: #121117;
  margin-bottom: 16px;
}

.tsubs-rt-list {
  padding: 0;
  list-style: none;
  margin: 0;
}

.tsubs-rt-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #121117;
  line-height: 1.4;
  font-weight: 500;
}

.tsubs-rt-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #121117;
}

.tsubs-rt-actions {
  padding-top: 24px;
}

.tsubs-rt-btn-primary {
  background: #ff2500;
  color: #ffffff;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s;
}

.tsubs-rt-btn-primary:hover {
  background: #d01e00;
}

@media (max-width: 550px) {
  #tsubs-review-transfer-backdrop {
    align-items: flex-end;
  }

  .tsubs-rt-section {
    max-width: 100%;
    margin: 0;
    min-height: 100vh;
    height: 100vh;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    animation: tsubs-slide-up 0.3s ease-out;
  }

  .tsubs-rt-content {
    flex: 1;
    overflow-y: auto;
  }

  .tsubs-rt-actions {
    margin-top: auto;
    padding-bottom: env(safe-area-inset-bottom, 24px);
  }

  #tsubs-review-transfer-backdrop .tsubs-rt-section {
    border-radius: 0;
  }
}

@keyframes tsubs-slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}


#tsubs-review-transfer-modal .tsubs-rt-list li {
    border: none !important;
}