@keyframes caret-blink {
  0%,
  70%,
  100% {
    opacity: 1;
  }
  20%,
  50% {
    opacity: 0;
  }
}

.caret-blink {
  animation: caret-blink 1.2s ease-out infinite;
}

.drag-active {
  background-color: #eaf4fe;
  border-color: #1e88e5; /* Adjust the color based on your theme */
}

/* Custom Calendar Styles */
.rdp-root {
  /* Use variables generated by MUI's CssVarsProvider */
  --rdp-accent-color: var(
    --color-blue-500,
    #387bf0
  ); /* Fallback to hardcoded primary color */
  --rdp-background-color: var(--bg-primary, #ffffff);
  --rdp-accent-background-color: var(--bg-quaternary, #f0f0f0);
  --rdp-text-color: var(--text-primary, #171717);
  --rdp-text-disabled: var(--text-quaternary, #a3a3a3);
  --rdp-text-secondary: var(--text-secondary, #6e6e6e);
  --rdp-border-radius: 6px; /* Or use a theme token if available */
  margin: 0;
  padding: 12px;
}

/* Root container */
.rdp-root {
  position: relative;
  box-sizing: border-box;
  /* Use MUI's typography font family if available */
  font-family: var(--mui-font-family);
  font-family: var(--mui-typography-fontFamily, var(--mui-font-family));
}

/* Months container */
.rdp-months {
  position: relative;
  display: flex;
}

/* Month caption */
.rdp-month-caption {
  position: relative;
  margin: 0 40px;
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: center;
}

/* Caption container */
.rdp-caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

/* Caption label */
.rdp-caption_label {
  height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Navigation */
.rdp-nav {
  display: flex;
  align-items: flex-start;
}

/* Navigation buttons */
.rdp-button_previous,
.rdp-button_next {
  position: absolute;
  height: 28px;
  width: 28px;
  background-color: transparent;
  padding: 0;
  opacity: 0.8;
  /* Use MUI's divider color */
  border: 1px solid var(--mui-palette-divider);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rdp-button_previous:hover,
.rdp-button_next:hover {
  opacity: 1;
  background-color: transparent;
}

.rdp-button_previous {
  left: 0;
}

.rdp-button_next {
  right: 0;
}

/* Weekdays row */
.rdp-weekdays {
  display: flex;
  flex-direction: row;
  width: 100%;
}

/* Weekday cell */
.rdp-weekday {
  flex: 1 1;
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--rdp-text-secondary);
  text-align: center;
}

/* Month */
.rdp-month {
  width: 100%;
}

/* Month grid */
.rdp-month-grid {
  margin: 16px 0 0;
  width: 100%;
}

/* Week row */
.rdp-week {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
}

/* Day cell */
.rdp-day {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 1 1;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0.875rem;
}

/* Day button */
.rdp-day-button {
  width: 32px;
  height: 32px;
  border-radius: var(--rdp-border-radius);
  padding: 0;
  font-weight: normal;
  transition: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rdp-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdp-day-button:hover {
  background-color: var(--rdp-accent-background-color);
}

/* Selected day */
.rdp-selected .rdp-day {
  background-color: var(--rdp-accent-color) !important;
  color: #fff !important;
  border-radius: var(--rdp-border-radius);
}

.rdp-selected .rdp-day-button {
  background-color: var(--rdp-accent-color) !important;
  color: #fff !important;
  border-radius: var(--rdp-border-radius);
}

/* Today */
.rdp-today .rdp-day-button {
  background-color: var(
    --rdp-accent-background-color
  ); /* Uses --mui-palette-action-hover */
  color: var(--rdp-text-color); /* Uses --mui-palette-text-primary */
}

/* Outside days */
.rdp-outside {
  color: var(--rdp-text-secondary);
  opacity: 0.5;
}

.rdp-outside .rdp-day-button {
  color: var(--rdp-text-secondary);
}

.rdp-outside.rdp-selected .rdp-day-button {
  background-color: rgba(var(--rdp-accent-color-rgb), 0.5);
  color: var(--rdp-text-secondary);
  opacity: 0.3;
}

/* Disabled days */
.rdp-disabled {
  color: var(--rdp-text-disabled);
  opacity: 0.5;
}

.rdp-disabled .rdp-day-button {
  cursor: default;
}

/* Range selection */
.rdp-range-start {
  background-color: var(
    --rdp-accent-background-color
  ); /* Uses --mui-palette-action-hover */
  border-top-left-radius: var(--rdp-border-radius);
  border-bottom-left-radius: var(--rdp-border-radius);
}

.rdp-range-start .rdp-day-button {
  background-color: var(
    --rdp-accent-color
  ); /* Uses --mui-palette-primary-main */
  color: var(--mui-palette-primary-contrastText); /* Uses contrast text */
}

.rdp-range-middle {
  background-color: var(
    --rdp-accent-background-color
  ) !important; /* Uses --mui-palette-action-hover */
}

.rdp-range-middle .rdp-day-button {
  background-color: transparent !important;
  color: var(--rdp-text-color) !important; /* Uses --mui-palette-text-primary */
  border-radius: 0 !important;
}

.rdp-range-end {
  background-color: var(
    --rdp-accent-background-color
  ); /* Uses --mui-palette-action-hover */
  border-top-right-radius: var(--rdp-border-radius);
  border-bottom-right-radius: var(--rdp-border-radius);
}

.rdp-range-end .rdp-day-button {
  background-color: var(
    --rdp-accent-color
  ); /* Uses --mui-palette-primary-main */
  color: var(--mui-palette-primary-contrastText); /* Uses contrast text */
}

/* Hidden elements */
.rdp-hidden {
  visibility: hidden;
  flex: 1 1;
}

/* Year grid */
.rdp-year-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 8px;
  gap: 8px;
  margin-top: 16px;
}

.rdp-year-button {
  height: 28px;
  width: 100%;
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--rdp-text-color);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--rdp-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdp-year-button:hover {
  background-color: var(--rdp-accent-background-color);
}

.rdp-year-button.current-year {
  background-color: var(--rdp-accent-background-color);
  font-weight: 500;
}

.rdp-year-button:disabled {
  color: var(--rdp-text-disabled); /* Uses --mui-palette-text-disabled */
  opacity: 0.5;
  cursor: default;
}

/* Month selection grid */
.rdp-month-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
  gap: 8px;
  margin-top: 16px;
}

.rdp-month-button {
  height: 36px;
  width: 100%;
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--rdp-text-color);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--rdp-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
}

.rdp-month-button:hover {
  background-color: var(--rdp-accent-background-color);
}

.rdp-month-button.current-month {
  background-color: var(--rdp-accent-background-color);
  font-weight: 500;
}

.rdp-month-button.selected-month {
  background-color: var(--rdp-accent-color);
  color: #fff;
}

.rdp-month-button:disabled {
  color: var(--rdp-text-disabled);
  opacity: 0.5;
  cursor: default;
}

/* Document container styling */
.bill-pay-pdf-viewer .pdf-document-container {
  height: 100%;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 auto;
}

.bill-pay-pdf-viewer .pdf-document-container .react-pdf__Document {
  height: 100%;
}

.bill-pay-pdf-viewer .react-pdf__message--error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Scoped styles for bill pay PDF viewer only */
.bill-pay-pdf-viewer .react-pdf__Page {
  margin-top: 0 !important;
  background-color: transparent !important;
  position: relative;
  display: flex;
  justify-content: center;
}

.bill-pay-pdf-viewer .react-pdf__Page__canvas {
  display: block !important;
  margin: 0 auto;
  border: 1px solid #e5e5e5;
  border-radius: 0 !important;
  box-shadow:
    0px 3px 6px -3px rgba(0, 0, 0, 0.05),
    0px 2px 4px -2px rgba(0, 0, 0, 0.05),
    0px 1px 2px -1px rgba(0, 0, 0, 0.05),
    0px 1px 1px -1px rgba(0, 0, 0, 0.05),
    0px 1px 0px -1px rgba(0, 0, 0, 0.05);
  height: auto !important;
}

/* Style the text layer with exact positioning */
.bill-pay-pdf-viewer .react-pdf__Page__textContent {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2;
  opacity: 0.25;
}

/* Make text selectable and visible when selected */
.bill-pay-pdf-viewer .react-pdf__Page__textContent span {
  color: transparent;
  cursor: text;
}

.bill-pay-pdf-viewer .react-pdf__Page__textContent ::selection {
  background-color: rgba(0, 0, 255, 0.3);
}

.bill-pay-pdf-viewer .all-page-container {
  height: 100%;
  max-height: 500px;
  overflow: auto;
}

.react-pdf__Page {
  margin-top: 10px;
  background-color: #525659 !important;
}

.react-pdf__Page__annotations.annotationLayer {
  padding: 20px;
}

.react-pdf__Page__canvas {
  margin: 0 auto;
  border: 1px solid darkgrey;
  border-radius: 5px;
}

/* For all pages */
.all-page-container {
  height: 100%;
  max-height: 500px;
  overflow: auto;
}

.react-pdf__Page__textContent .textLayer {
  display: flex;
  margin: 0 auto;
}

/* Remove the .vercel wrapper and target elements directly */

[cmdk-dialog] {
  position: fixed;
  top: 15vh;
  left: 50%;
  transform: translateX(-50%);
  max-width: 680px;
  max-height: 460px;
  width: 100%;
  padding: 8px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-sans);
  border: 1px solid var(--gray6);
  box-shadow:
    rgba(0, 0, 0, 0.16) 10px 16px 40px 0px,
    rgba(0, 0, 0, 0.08) 40px 60px 72px 0px,
    rgba(0, 0, 0, 0.05) 84px 124px 90px 0px,
    rgba(145, 145, 123, 0.2) 0px 0px 0px 1px;
  z-index: 1000;
  font-size: 14px;
  font-weight: 400;
}

[cmdk-overlay] {
  background-color: rgba(244, 243, 239, 0.8);
  position: fixed;
  inset: 0;
  z-index: 1000;
}

[cmdk-root] {
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  overflow: hidden;
  font-family: var(--font-sans);
  transition: transform 225ms ease;
  outline: none;
  font-size: 14px;
  font-weight: 400;
}

[cmdk-input] {
  font-family: var(--font-sans);
  border: none;
  width: 100%;
  font-size: 17px;
  padding: 8px 8px 16px 8px;
  outline: none;
  background: #fff;
  color: #181b25;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0px;
  border-radius: 0;
  font-weight: 400;
}

[cmdk-input]::placeholder {
  color: #999999;
  color: var(--gray9, #999999);
}

[cmdk-item] {
  cursor: pointer;
  height: 44px;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  color: #181b25;
  -webkit-user-select: none;
          user-select: none;
  transition: all 150ms ease;
  font-size: 14px;
  font-weight: 400;
}

[cmdk-item][data-selected="true"] {
  background: #f0f0f0;
  color: #181b25;
}

[cmdk-list] {
  height: min(400px, calc(var(--cmdk-list-height)));
  max-height: 400px;
  overflow: auto;
  overscroll-behavior: contain;
  scroll-padding-block-start: 8px;
  scroll-padding-block-end: 8px;
  transition: 100ms ease;
  transition-property: height;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

[cmdk-list]::-webkit-scrollbar {
  display: none;
}

[cmdk-group-heading] {
  -webkit-user-select: none;
          user-select: none;
  font-size: 12px;
  color: #636469;
  padding: 0 8px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 4px;
}

[cmdk-empty] {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  white-space: pre-wrap;
  font-size: 14px;
  font-weight: 400;
}

[cmdk-vercel-badge] {
  height: 20px;
  background: #f0f0f0;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  font-size: 12px;
  color: #636469;
  border-radius: 4px;
  margin: 4px 0 4px 4px;
  -webkit-user-select: none;
          user-select: none;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  font-weight: 400;
}

@keyframes overlayShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes animateFirstCard {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes animateSecondCard {
  0% {
    opacity: 0;
    transform: translateX(220px) translateY(40px) rotate(-16deg);
  }
  100% {
    opacity: 1;
    transform: translateX(220px) translateY(-10px) rotate(-16deg);
  }
}

@keyframes animateThirdCard {
  0% {
    opacity: 0;
    transform: translateX(-220px) translateY(40px) rotate(16deg);
  }
  100% {
    opacity: 1;
    transform: translateX(-220px) translateY(-10px) rotate(16deg);
  }
}

.animate-card-one {
  animation: animateFirstCard 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-card-two {
  opacity: 0;
  animation: animateSecondCard 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s
    forwards;
}

.animate-card-three {
  opacity: 0;
  animation: animateThirdCard 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s
    forwards;
}

/* This will remove the bottom embedded component */
[data-cy="cta-card"] {
  display: none !important;
}

.fc .fc-daygrid-day-frame, /* for day numbers */
.fc .fc-col-header-cell-cushion, /* for column headers */
.fc .fc-event-title /* for event titles */ {
  font-family: "Roboto", sans-serif;
}
.fc-toolbar-title {
  font-size: 20px !important; /* Adjust this value to your desired font size */
  color: #0c1d37;
}
.fc-prev-button,
.fc-next-button {
  background-color: #0c1d37 !important;
}
.fc .clickable-event {
  cursor: pointer !important;
}

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}
button,
a {
  -webkit-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-align: inherit;
  box-shadow: 0 0 0 2px transparent;
  -webkit-app-region: no-drag;
}

button {
  -webkit-user-select: none;
          user-select: none;
}

.drag {
  -webkit-app-region: drag;
}

.no-drag {
  -webkit-app-region: no-drag;
}

input,
textarea {
  border: none;
  outline: none;
}

ul {
  display: block;
  list-style-type: disc;
  margin: 0;
  padding-left: 16px;
}

.scrollbar-hide {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* Table cell select styles */
.table-cell-select {
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  font-weight: 400;
  padding-left: 16px;
  padding-right: 16px;
  background-color: transparent !important;
  cursor: default;
}

.table-cell-select-trigger {
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  font-weight: 400;
}


/*# sourceMappingURL=main.5a351b64.css.map*/