#track-request-page {
  direction: rtl;
  width: 100%;
  padding: 40px 0;
}

#track-request-page .trp-card {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  padding: 28px;
}

#track-request-page .trp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  /* border-bottom: 1px solid #edf0f5; */
  padding-bottom: 24px;
  margin-bottom: 24px;
}

#track-request-page .trp-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  color: #101828;
}

#track-request-page .trp-title i {
  color: #15803d;
  font-size: 25px;
}

#track-request-page .trp-subtitle {
  margin: 8px 0 0;
  color: #7b8496;
  font-size: 15px;
  line-height: 1.8;
}

#track-request-page .trp-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  background: #eef4ff;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

#track-request-page .trp-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

#track-request-page .trp-alert-error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

#track-request-page .trp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#track-request-page .trp-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

#track-request-page .trp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 16px;
  font-weight: 900;
  color: #172033;
  margin: 0;
}

#track-request-page .trp-label i {
  color: #15803d;
}

#track-request-page .trp-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9dee8;
  border-radius: 12px;
  padding: 0 14px;
  background: #ffffff;
  color: #172033;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  transition: 0.2s ease;
}

#track-request-page .trp-control:focus {
  border-color: #15803d;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

#track-request-page .trp-actions {
  /* border-top: 1px solid #edf0f5; */
  padding-top: 22px;
  margin: 4px auto 0 auto;
}

#track-request-page .trp-btn {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

#track-request-page .trp-btn:hover {
  transform: translateY(-1px);
}

#track-request-page .trp-btn-primary {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
}

#track-request-page .trp-btn-primary:hover {
  background: #288149;
  color: #ffffff;
}

@media (max-width: 768px) {
  #track-request-page {
    padding: 20px 0;
  }

  #track-request-page .trp-card {
    padding: 20px;
    margin: 0 10px;
  }

  #track-request-page .trp-header {
    flex-direction: column;
    align-items: flex-start;
  }

  #track-request-page .trp-title {
    font-size: 23px;
  }
}