/* projects/ambassadors/src/styles.css */
:root {
  --bs-primary: #0d6efd;
  --bs-dark: #212529;
  --bs-white: #fff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
[class^=col-] {
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
.col-md-3,
.col-md-6 {
  flex: 0 0 100%;
  max-width: 100%;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}
.gap-2 {
  gap: .5rem;
}
.text-center {
  text-align: center;
}
.text-md-start {
  text-align: left;
}
.text-white {
  color: #fff !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-secondary {
  color: #6c757d !important;
}
.text-primary {
  color: var(--bs-primary) !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.bg-dark {
  background: var(--bs-dark) !important;
}
.bg-primary {
  background: var(--bs-primary) !important;
}
.bg-opacity-10 {
  background-color: rgba(13, 110, 253, .1) !important;
}
.border-0 {
  border: 0 !important;
}
.border-light {
  border-color: rgba(255, 255, 255, .35) !important;
}
.rounded-4 {
  border-radius: 1rem !important;
}
.rounded-circle {
  border-radius: 999px !important;
}
.shadow {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.ms-auto {
  margin-left: auto;
}
.ms-2 {
  margin-left: .5rem;
}
.me-1 {
  margin-right: .25rem;
}
.me-2 {
  margin-right: .5rem;
}
.me-3 {
  margin-right: 1rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: .25rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-3 {
  margin-top: 1rem;
}
.p-0 {
  padding: 0;
}
.p-4 {
  padding: 1.5rem;
}
.py-3 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.py-5 {
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.pt-4 {
  padding-top: 1.5rem;
}
.pb-2 {
  padding-bottom: .5rem;
}
.w-100 {
  width: 100%;
}
.fw-semibold {
  font-weight: 600;
}
.small,
small {
  font-size: .875em;
}
.navbar {
  align-items: center;
  display: flex;
  padding: .5rem 0;
  position: relative;
}
.navbar > .container-fluid {
  align-items: center;
  display: flex;
}
.navbar-brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}
.navbar-nav {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.nav-link {
  color: rgba(255, 255, 255, .75);
  display: block;
  padding: .5rem;
  text-decoration: none;
}
.nav-link.active,
.nav-link:hover {
  color: #fff;
}
.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  min-width: 0;
  position: relative;
  word-wrap: break-word;
}
.card-body {
  color: #212529;
  flex: 1 1 auto;
}
.form-label {
  display: inline-block;
  margin-bottom: .5rem;
}
.form-control {
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: .375rem;
  color: #212529;
  display: block;
  font: inherit;
  line-height: 1.5;
  padding: .375rem .75rem;
  width: 100%;
}
.form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
  outline: 0;
}
.btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: .375rem;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  line-height: 1.5;
  padding: .375rem .75rem;
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}
.btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: .65;
}
.alert {
  border: 1px solid transparent;
  border-radius: .375rem;
  margin-bottom: 1rem;
  padding: 1rem;
}
.alert-success {
  background: #d1e7dd;
  border-color: #badbcc;
  color: #0f5132;
}
.alert-warning {
  background: #fff3cd;
  border-color: #ffecb5;
  color: #664d03;
}
.alert-danger,
.form-error {
  background: #f8d7da;
  border: 1px solid #f5c2c7;
  border-radius: .375rem;
  color: #842029;
  padding: 1rem;
}
.list-unstyled {
  list-style: none;
  padding-left: 0;
}
.portal-card {
  margin: 0;
}
.auth-form {
  display: block;
}
.auth-form label {
  color: inherit;
  display: block;
  font-weight: 400;
}
.auth-form input {
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: .375rem;
  display: block;
  font: inherit;
  line-height: 1.5;
  padding: .375rem .75rem;
  width: 100%;
}
.auth-form button {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  border-radius: .375rem;
  color: #fff;
  cursor: pointer;
  font: inherit;
  line-height: 1.5;
  padding: .375rem .75rem;
  width: 100%;
}
.switch-link {
  color: #6c757d;
  text-align: center;
}
.optional {
  color: #6c757d;
  font-weight: 500;
}
.avatar,
.avatar-img {
  align-items: center;
  display: inline-flex;
  height: 64px;
  justify-content: center;
  object-fit: cover;
  width: 64px;
}
.button-link {
  align-items: center;
  background: #0369a1;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: .85rem 1.2rem;
  text-decoration: none;
}
.status-panel,
.profile-grid,
.metrics-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.status-panel {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 1rem;
}
.status-panel.status-active {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.profile-grid div,
.metric-card,
.next-steps {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem;
}
.profile-grid dt,
.metric-card span {
  color: #64748b;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}
.profile-grid dd {
  margin: .25rem 0 0;
  overflow-wrap: anywhere;
}
.metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.metric-card strong {
  display: block;
  font-size: 1.7rem;
  margin-top: .25rem;
}
.referral-urls {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-top: 1.5rem;
  padding: 1rem;
}
.referral-urls h3,
.referral-urls p {
  margin-top: 0;
}
.referral-urls ul {
  display: grid;
  gap: .75rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.referral-urls li {
  display: grid;
  gap: .25rem;
}
.referral-urls span {
  color: #64748b;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}
.referral-urls a,
.referral-urls code {
  overflow-wrap: anywhere;
}
.referral-tip,
.referral-urls .referral-url-status {
  color: #92400e;
}
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .text-md-start {
    text-align: left;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
