@layer components {
  .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .line-clamp-10 {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
} 
[x-cloak] { display: none !important; }

/* Icon circles on the card divider line */
.pp-icon-blue {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #5b9cf6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-icon-orange {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #f5893a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Horizontal rule with a centered icon sitting on top of it */
.pp-icon-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 32px 20px;
}

.pp-icon-divider hr {
  width: 100%;
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0;
}

.pp-icon-divider-inner {
  position: absolute;
  background: #fff;
  padding: 0 8px;
}

/* Small circular icon wrapper used in the calls / submissions rows */
.pp-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Horizontal bar chart */
.pp-bar-track {
  flex: 1;
  height: 22px;
  background: #f3f4f6;
  border-radius: 3px;
  position: relative;
  overflow: visible; /* allows tooltip to appear outside track bounds */
}

.pp-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #93c5fd;
  border-radius: 3px;
  overflow: visible; /* let tooltip escape the fill boundary */
}

.pp-bar-grid-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: #e5e7eb;
  pointer-events: none;
}

/* Apply button — navy #1e3a6e is not in the default Tailwind palette */
.pp-btn-apply {
  background-color: #1e3a6e;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.pp-btn-apply:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pp-btn-apply:not(:disabled):hover {
  background-color: #1a3260;
}

/* Selected month cell in the month-picker grid */
.pp-month-selected {
  background: #1e3a6e !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
}

/* Table view */
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.pp-table thead tr {
  background-color: #dbeafe; /* blue-100 */
}
.pp-table thead th {
  padding: 10px 16px;
  font-weight: 600;
  color: #000;
}
.pp-table thead th:first-child { border-radius: 6px 0 0 6px; }
.pp-table thead th:last-child  { border-radius: 0 6px 6px 0; }
.pp-table tbody tr {
  border-top: 1px solid #f3f4f6;
}
.pp-table tbody td {
  padding: 12px 16px;
  color: #000;
}
.reputation-select {
  position: relative;
  width: 100%;
}

.reputation-select-button {
  align-items: center;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  color: #111827;
  display: flex;
  font-size: 0.875rem;
  justify-content: space-between;
  min-height: 42px;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  position: relative;
  text-align: left;
  width: 100%;
}

.reputation-select-button:focus {
  border-color: #ed2024;
  box-shadow: 0 0 0 3px rgba(237, 32, 36, 0.18);
  outline: none;
}

.reputation-select-chevron {
  color: #111827;
  font-size: 1.25rem;
  line-height: 1;
  position: absolute;
  right: 0.875rem;
  top: 35%;
  transform: translateY(-54%) rotate(0deg);
  transition: transform 0.15s ease;
}

.reputation-select.is-open .reputation-select-chevron {
  transform: rotate(180deg);
}

.reputation-select-options {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  color: #111827;
  left: 0;
  list-style: none;
  margin: 0.375rem 0 0;
  max-height: 240px;
  overflow-y: auto;
  padding: 0.35rem;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 30;
}

.reputation-select-options li {
  align-items: center;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0.55rem 0.7rem;
}

.reputation-select-options li:hover,
.reputation-select-options li[aria-selected="true"] {
  background: #fff1f1;
  color: #c8102e;
}

.reputation-option-check {
  color: #ed2024;
  font-weight: 700;
  width: 1rem;
}
#global-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

#global-loader.gl-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

.gl-spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(
    #ed2024 0%,
    rgba(237, 32, 36, 0.5) 40%,
    rgba(237, 32, 36, 0.15) 70%,
    transparent 100%
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #fff calc(100% - 5px));
  animation: gl-spin 0.85s linear infinite;
}

turbo-frame[data-local-loading="true"] {
  display: block;
  min-height: 12rem;
  position: relative;
}

turbo-frame[data-local-loading="true"]::before {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0.75rem;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 40;
}

turbo-frame[data-local-loading="true"]::after {
  animation: gl-spin 0.85s linear infinite;
  border: 4px solid rgba(237, 32, 36, 0.18);
  border-radius: 9999px;
  border-top-color: #ed2024;
  content: "";
  height: 2.5rem;
  left: 50%;
  margin-left: -1.25rem;
  position: absolute;
  top: 7rem;
  width: 2.5rem;
  z-index: 41;
}

.section-local-loading {
  min-height: 12rem;
  position: relative;
}

.section-local-loading::before {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0.75rem;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 40;
}

.section-local-loading::after {
  animation: gl-spin 0.85s linear infinite;
  border: 4px solid rgba(237, 32, 36, 0.18);
  border-radius: 9999px;
  border-top-color: #ed2024;
  content: "";
  height: 2.5rem;
  left: 50%;
  margin-left: -1.25rem;
  margin-top: -1.25rem;
  position: absolute;
  top: 50%;
  width: 2.5rem;
  z-index: 41;
}

.dashboard-section-loading {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  min-height: 16rem;
  position: relative;
}

.dashboard-section-loading--compact {
  min-height: 8rem;
}

.dashboard-section-loading::after {
  animation: gl-spin 0.85s linear infinite;
  border: 4px solid rgba(237, 32, 36, 0.18);
  border-radius: 9999px;
  border-top-color: #ed2024;
  content: "";
  height: 2.5rem;
  left: 50%;
  margin-left: -1.25rem;
  margin-top: -1.25rem;
  position: absolute;
  top: 50%;
  width: 2.5rem;
}

.dashboard-skeleton-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.dashboard-skeleton-program {
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.5rem 1.75rem 1.75rem;
}

.dashboard-skeleton-header,
.dashboard-skeleton-actions,
.dashboard-skeleton-contact-heading,
.dashboard-skeleton-bar-row,
.dashboard-skeleton-contact-footer {
  align-items: center;
  display: flex;
}

.dashboard-skeleton-header {
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.dashboard-skeleton-actions {
  gap: 0.5rem;
}

.dashboard-skeleton-performance-grid,
.dashboard-skeleton-contacts-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-skeleton-panel {
  border: 1px solid #e5e7eb;
  min-height: 22rem;
  padding: 1.75rem 2rem;
}

.dashboard-skeleton-contact {
  border-radius: 0;
}

.dashboard-skeleton-contact-heading {
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
}

.dashboard-skeleton-table-head,
.dashboard-skeleton-table-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0.85rem 1.25rem;
}

.dashboard-skeleton-table-head {
  background: #fff1f1;
}

.dashboard-skeleton-contact:nth-child(2) .dashboard-skeleton-table-head,
.dashboard-skeleton-contact:nth-child(2) .dashboard-skeleton-table-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-skeleton-table-row {
  border-top: 1px solid #f3f4f6;
}

.dashboard-skeleton-contact-footer {
  border-top: 1px solid #f3f4f6;
  justify-content: center;
  padding: 0.9rem 1rem;
}

.dashboard-skeleton-line,
.dashboard-skeleton-pill,
.dashboard-skeleton-square,
.dashboard-skeleton-circle,
.dashboard-skeleton-number,
.dashboard-skeleton-bar-track,
.dashboard-skeleton-info-dot,
.dashboard-skeleton-button {
  animation: dashboard-skeleton-shimmer 1.25s ease-in-out infinite;
  background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 45%, #f3f4f6 90%);
  background-size: 220% 100%;
}

.dashboard-skeleton-line {
  border-radius: 9999px;
  height: 0.75rem;
  width: 100%;
}

.dashboard-skeleton-line--title,
.dashboard-skeleton-line--contact-title {
  height: 1.2rem;
  width: 13rem;
}

.dashboard-skeleton-line--date {
  height: 0.75rem;
  margin-top: 0.55rem;
  width: 11rem;
}

.dashboard-skeleton-line--panel-title {
  height: 0.95rem;
  margin: 0 auto;
  width: 8rem;
}

.dashboard-skeleton-line--subtitle {
  height: 0.65rem;
  margin: 0.75rem auto 1.5rem;
  width: 13rem;
}

.dashboard-skeleton-line--label {
  height: 0.65rem;
  margin: 0.7rem auto 1.5rem;
  width: 7rem;
}

.dashboard-skeleton-line--bar-label {
  flex: 0 0 4rem;
}

.dashboard-skeleton-pill {
  border-radius: 0.5rem;
  height: 2rem;
  width: 5rem;
}

.dashboard-skeleton-pill--short,
.dashboard-skeleton-square {
  width: 2.7rem;
}

.dashboard-skeleton-square {
  border-radius: 0.5rem;
  height: 2rem;
}

.dashboard-skeleton-divider {
  border-top: 1px solid #e5e7eb;
  margin: 1.7rem 0 1.4rem;
  position: relative;
}

.dashboard-skeleton-circle,
.dashboard-skeleton-info-dot {
  border-radius: 9999px;
}

.dashboard-skeleton-circle {
  height: 2.5rem;
  left: 50%;
  margin-left: -1.25rem;
  margin-top: -1.25rem;
  position: absolute;
  top: 0;
  width: 2.5rem;
}

.dashboard-skeleton-info-dot {
  height: 1rem;
  width: 1rem;
}

.dashboard-skeleton-number {
  border-radius: 9999px;
  height: 2.8rem;
  margin: 2.3rem auto 0;
  width: 9rem;
}

.dashboard-skeleton-bars {
  display: grid;
  gap: 0.75rem;
}

.dashboard-skeleton-bar-row {
  gap: 0.8rem;
}

.dashboard-skeleton-bar-track {
  border-radius: 0.25rem;
  flex: 1;
  height: 1rem;
  overflow: hidden;
  position: relative;
}

.dashboard-skeleton-bar-fill {
  background: rgba(237, 32, 36, 0.28);
  border-radius: 0.25rem;
  height: 100%;
}

.dashboard-skeleton-bar-fill--1 { width: 52%; }
.dashboard-skeleton-bar-fill--2 { width: 36%; }
.dashboard-skeleton-bar-fill--3 { width: 4%; }
.dashboard-skeleton-bar-fill--4 { width: 12%; }
.dashboard-skeleton-bar-fill--5 { width: 28%; }

.dashboard-skeleton-button {
  border-radius: 0;
  height: 2rem;
  width: 8rem;
}

@media (max-width: 768px) {
  .dashboard-skeleton-header {
    align-items: flex-start;
    gap: 1rem;
  }

  .dashboard-skeleton-performance-grid,
  .dashboard-skeleton-contacts-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-skeleton-actions {
    display: none;
  }
}

@keyframes dashboard-skeleton-shimmer {
  0% { background-position: 140% 0; }
  100% { background-position: -80% 0; }
}

@keyframes gl-spin {
  to { transform: rotate(360deg); }
}

[x-cloak] { display: none !important; }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

:root {
  --fuel-navy: #000000;
  --fuel-navy-dark: #000000;
  --fuel-navy-soft: #1a1a1a;
  --fuel-white: #ffffff;
  --fuel-blue: #ed2024;
  --fuel-blue-dark: #c8102e;
  --fuel-blue-soft: #fff1f1;
  --fuel-blue-border: #f8b4b4;
  --fuel-muted: #6b7280;
}

body {
  color: #111827;
}

@media (min-width: 80rem) {
  .container {
    max-width: 80rem;
  }
}

.clients-index-shell {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.client-search-input::-webkit-search-cancel-button {
  cursor: pointer;
  margin-right: -0.15rem;
}

@media (min-width: 64rem) {
  .clients-index-shell {
    margin-left: calc(50% - 50vw + 2rem);
    margin-right: calc(50% - 50vw + 2rem);
    width: calc(100vw - 4rem);
  }
}

@media (min-width: 96rem) {
  .clients-index-shell {
    margin-left: calc(50% - 50vw + 3rem);
    margin-right: calc(50% - 50vw + 3rem);
    width: calc(100vw - 6rem);
  }
}

.fuel-public-main {
  background: #000000;
  box-sizing: border-box;
  display: flow-root;
  min-height: 100vh;
  padding: 0;
}

.fuel-public-hero {
  align-items: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(237, 32, 36, 0.28), transparent 24rem),
    radial-gradient(circle at 80% 76%, rgba(237, 32, 36, 0.12), transparent 28rem),
    linear-gradient(135deg, #070707 0%, #000000 48%, #111111 100%);
  color: var(--fuel-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 3rem 1.25rem;
  position: relative;
}

.fuel-public-hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.55;
  position: absolute;
}

.fuel-public-glow {
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
  position: absolute;
}

.fuel-public-glow-one {
  background: rgba(237, 32, 36, 0.18);
  height: 18rem;
  left: 11%;
  top: 18%;
  width: 18rem;
}

.fuel-public-glow-two {
  background: rgba(255, 255, 255, 0.07);
  bottom: 14%;
  height: 22rem;
  right: 9%;
  width: 22rem;
}

.fuel-public-hero-card {
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  max-width: 58rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: min(100%, 58rem);
  z-index: 1;
}

.fuel-public-brand {
  align-items: center;
  background: #000000;
  border-bottom: 1px solid rgba(237, 32, 36, 0.35);
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem 1.75rem;
}

.fuel-public-logo {
  height: 5rem;
  width: auto;
}

.fuel-public-copy {
  padding: 3rem 2rem 1.5rem;
}

.fuel-public-eyebrow {
  color: var(--fuel-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.fuel-public-copy h1 {
  color: var(--fuel-white);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0 auto;
  max-width: 48rem;
}

.fuel-public-copy p:not(.fuel-public-eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 1.4rem auto 0;
  max-width: 42rem;
}

.fuel-public-actions {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0.5rem 2rem 3rem;
}

.fuel-public-login-button {
  background: var(--fuel-blue);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(237, 32, 36, 0.32);
  color: var(--fuel-white);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  min-width: 14rem;
  padding: 0.9rem 1.45rem;
  text-decoration: none;
  transition: background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.fuel-public-login-button:hover,
.fuel-public-login-button:focus {
  background: var(--fuel-blue-dark);
  box-shadow: 0 16px 36px rgba(237, 32, 36, 0.42);
  outline: none;
  transform: translateY(-1px);
}

.fuel-public-actions span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.fuel-top-nav {
  align-items: center;
  background: var(--fuel-navy);
  border-bottom: 1px solid rgba(237, 32, 36, 0.38);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  color: var(--fuel-white);
  display: flex;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.55rem 1.5rem;
}

.fuel-top-nav-inner {
  align-items: center;
  display: flex;
  gap: 1.75rem;
  min-width: 0;
}

.fuel-top-nav-brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.fuel-top-nav-logo {
  display: block;
  height: 2.8rem;
  width: auto;
}

.fuel-top-nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}

.fuel-top-nav-link {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.fuel-top-nav-link:hover,
.fuel-top-nav-link:focus {
  background: rgba(237, 32, 36, 0.18);
  color: var(--fuel-white);
  outline: none;
}

.fuel-top-nav-logout {
  background: var(--fuel-blue);
  border: 1px solid var(--fuel-blue);
  border-radius: 999px;
  color: var(--fuel-white);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.55rem 1.2rem;
  text-transform: uppercase;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.fuel-top-nav-logout:hover,
.fuel-top-nav-logout:focus {
  background: var(--fuel-blue-dark);
  border-color: var(--fuel-blue-dark);
  outline: none;
  transform: translateY(-1px);
}

.fuel-sidebar {
  background: var(--fuel-navy);
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.2);
}

.fuel-sidebar-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fuel-sidebar-link {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.fuel-sidebar-link:hover,
.fuel-sidebar-link:focus {
  background: rgba(237, 32, 36, 0.16);
  color: var(--fuel-white);
  outline: none;
}

.fuel-sidebar-link-active {
  background: var(--fuel-navy-soft);
  box-shadow: inset 4px 0 0 var(--fuel-blue);
  color: var(--fuel-white);
}

.fuel-login-shell {
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(237, 32, 36, 0.22), transparent 26rem),
    linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.fuel-login-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  max-width: 28rem;
  overflow: hidden;
  padding: 0 2rem 2rem;
  width: 100%;
}

.fuel-login-brand {
  align-items: center;
  background: var(--fuel-navy);
  display: flex;
  justify-content: center;
  margin: 0 -2rem 1.75rem;
  padding: 1.35rem 2rem 1.2rem;
}

.fuel-login-logo {
  height: 4.1rem;
  width: auto;
}

.fuel-login-form {
  margin-top: 1.75rem;
}

.fuel-login-submit,
.bg-blue-500,
.bg-blue-600,
.bg-indigo-500,
.bg-indigo-600,
.hover\:bg-blue-500:hover,
.hover\:bg-blue-700:hover,
.hover\:bg-blue-600:hover,
.hover\:bg-indigo-500:hover,
.hover\:bg-indigo-600:hover,
.hover\:bg-indigo-700:hover {
  background-color: var(--fuel-blue) !important;
}

.fuel-login-submit:hover,
.fuel-login-submit:focus,
.bg-blue-700,
.bg-indigo-700,
.hover\:bg-blue-700:hover,
.hover\:bg-indigo-700:hover {
  background-color: var(--fuel-blue-dark) !important;
}

.text-blue-400,
.text-blue-500,
.text-blue-600,
.text-blue-700,
.text-blue-800,
.text-blue-900,
.text-indigo-500,
.text-indigo-600,
.text-indigo-700,
.text-indigo-800,
.text-indigo-900,
.hover\:text-blue-500:hover,
.hover\:text-blue-600:hover,
.hover\:text-blue-800:hover,
.hover\:text-blue-900:hover,
.hover\:text-indigo-500:hover,
.hover\:text-indigo-600:hover,
.hover\:text-indigo-800:hover,
.hover\:text-indigo-900:hover {
  color: var(--fuel-blue) !important;
}

.border-blue-100,
.border-blue-200,
.border-blue-300,
.border-blue-400,
.border-blue-500,
.border-blue-600,
.border-indigo-100,
.border-indigo-200,
.border-indigo-300,
.border-indigo-400,
.border-indigo-500,
.border-indigo-600,
.hover\:border-blue-400:hover,
.hover\:border-indigo-400:hover {
  border-color: var(--fuel-blue-border) !important;
}

.bg-blue-50,
.bg-blue-100,
.bg-indigo-50,
.bg-indigo-100,
.hover\:bg-blue-50:hover,
.hover\:bg-indigo-50:hover,
.hover\:bg-indigo-100:hover,
.hover\:bg-indigo-200:hover {
  background-color: var(--fuel-blue-soft) !important;
}

.focus\:border-blue-300:focus,
.focus\:border-blue-500:focus,
.focus\:outline-blue-600:focus,
.focus\:ring-blue-200:focus,
.focus\:ring-blue-500:focus,
.focus\:border-indigo-300:focus,
.focus\:border-indigo-500:focus,
.focus\:outline-indigo-600:focus,
.focus\:ring-indigo-200:focus,
.focus\:ring-indigo-500:focus {
  border-color: var(--fuel-blue) !important;
  outline-color: var(--fuel-blue) !important;
  --tw-ring-color: rgba(237, 32, 36, 0.28) !important;
}

.ring-blue-500,
.ring-indigo-500,
.border-\[1\.5px\].border-blue-500,
.border-\[1\.5px\].border-dashed.border-blue-500,
.border-\[1\.5px\].border-indigo-500,
.border-\[1\.5px\].border-dashed.border-indigo-500 {
  border-color: var(--fuel-blue) !important;
  --tw-ring-color: rgba(237, 32, 36, 0.28) !important;
}

.pp-icon-blue,
.pp-btn-apply,
.pp-month-selected,
.reputation-rating-track > div,
.reputation-breakdown-card .bg-blue-500 {
  background-color: var(--fuel-blue) !important;
}

.pp-btn-apply:not(:disabled):hover {
  background-color: var(--fuel-blue-dark) !important;
}

.pp-bar-fill {
  background: rgba(237, 32, 36, 0.42) !important;
}

.pp-table thead tr {
  background-color: var(--fuel-blue-soft) !important;
}

.reputation-select-button:focus {
  border-color: var(--fuel-blue) !important;
  box-shadow: 0 0 0 3px rgba(237, 32, 36, 0.18) !important;
}

.reputation-select-options li:hover,
.reputation-select-options li[aria-selected="true"] {
  background: var(--fuel-blue-soft) !important;
  color: var(--fuel-blue-dark) !important;
}

.reputation-option-check {
  color: var(--fuel-blue) !important;
}

@media (max-width: 768px) {
  .fuel-top-nav {
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
  }

  .fuel-top-nav-logo {
    height: 2.3rem;
  }

  .fuel-top-nav-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .fuel-top-nav-link {
    padding-left: 0;
  }

  .fuel-top-nav-logout {
    padding: 0.45rem 0.9rem;
  }

  .fuel-login-card {
    padding: 0 1.25rem 1.5rem;
  }

  .fuel-login-brand {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .fuel-public-hero {
    justify-content: flex-start;
    padding: 1rem;
  }

  .fuel-public-brand {
    padding: 1.45rem 1rem 1.25rem;
  }

  .fuel-public-logo {
    height: 3.8rem;
  }

  .fuel-public-copy {
    padding: 2.25rem 1.25rem 1.25rem;
  }

  .fuel-public-copy h1 {
    font-size: 2.65rem;
  }

  .fuel-public-actions {
    padding: 0.25rem 1.25rem 2rem;
  }

}
