/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS 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/SCSS
 * 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.
 *







 */

/* CSS Variables for Profile Page Consistency */
:root {
  /* Profile Title Styling */
  --profile-title-font-size: 2rem;
  /* 32px */
  --profile-title-color: #6B7280;
  /* text-gray-500 */
  --profile-title-gap: 0.25rem;
  /* gap-1 */

  /* Info Panel Styling */
  --profile-info-panel-padding-y: 1.875rem;
  /* 30px */
  --profile-info-panel-padding-x: 1.25rem;
  /* 20px */
  --profile-info-panel-gap: 1.25rem;
  /* 20px */
  --profile-info-panel-bg: rgba(233, 238, 246, 0.5);
  --profile-info-panel-border: 1px solid rgba(140, 162, 194, 0.5);
  --profile-info-panel-border-radius: 1.25rem;
  /* 20px */

  /* Section Spacing */
  --profile-section-gap: 2.5rem;
  /* gap-10, 40px */
  --profile-form-gap: 2rem;
  /* gap-8, 32px */
  --profile-field-gap: 0.625rem;
  /* gap-2-1, 10px */
}

/* Profile Component Utility Classes */
.profile-title {
  font-size: var(--profile-title-font-size);
  color: var(--profile-title-color);
}

.profile-title-wrapper {
  gap: var(--profile-title-gap);
}

.profile-info-panel {
  padding: var(--profile-info-panel-padding-y) var(--profile-info-panel-padding-x);
  gap: var(--profile-info-panel-gap);
  background: var(--profile-info-panel-bg);
  border: var(--profile-info-panel-border);
  border-radius: var(--profile-info-panel-border-radius);
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}

#modal-background {
  display: none !important;
}

trix-toolbar .trix-button-group {
  border: none !important;
  border-bottom: none !important;
}

trix-toolbar .trix-button-group button {
  background: none;
  border: none;
}

trix-editor,
#scene_card_description,
#scene_card_note {
  overflow-y: auto;
}

.member-card-backdrop {
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.heart-fill path {
  fill: #8F79F1 !important;
  stroke: #8F79F1 !important;
}

@media screen and (max-width: 767px) {
  trix-toolbar .trix-button-row {
    flex-wrap: wrap !important;
  }
}

.pdf-document {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdf-page>canvas {
  max-width: 100%;
  height: auto !important;
}

.ss-main .ss-content {
  margin-top: 0 !important;
}

.show-mobile-only {
  display: block;
}

@media (hover: hover) {
  .show-mobile-only {
    display: none;
  }
}

.show-desktop-only {
  display: none;
}

@media (hover: hover) {
  .show-desktop-only {
    display: block;
  }
}



.fade-in {
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 0.5;
    transform: translateY(0);
  }
}

.scrollable-content {
  /* height: 300px; */
  /* Give it a fixed height or max-height */
  overflow-y: auto;

  /* Show vertical scrollbar if content overflows */
  /* If you were globally hiding scrollbars visually, you might need to re-enable them */
  /* Re-enable scrollbar styling for this specific element */
  /* For Webkit */
  &::-webkit-scrollbar {
    display: block;
    /* Or width/height/background to style them */
    width: 8px;
    /* Example width */
    background: #f1f1f1;
  }

  &::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.primary-color {
  color: #0D1621
}

.text-red-601 {
  color: #CC0003;
}

.text-green-501 {
  color: #2EA901;
}

.text-gray-301 {
  color: #B9BCC0;
}

.text-gray-201 {
  color: #E3E6EB !important;
}

.text-blue-402 {
  color: #C0C9DB;
}

.text-blue-403 {
  color: #576C89;
}

.text-blue-404 {
  color: #576C89
}

.text-blue-502-40 {
  color: #8CA2C240;
}


.bg-primary-color {
  background-color: #0D1621
}

.hover-bg-primary-color:hover {
  background-color: #0D1621
}

.bg-custom-blue {
  background-color: rgba(233, 238, 246, 0.5);
  border: 1px solid rgba(140, 162, 194, 0.5);
}

.bg-red-450 {
  background-color: #F63C3F;
}

.bg-red-701 {
  background-color: #FFF5F5;
}

.bg-red-702 {
  background-color: #FFF6F1;
}

.bg-blue-201 {
  background-color: #E3E6EB !important;
}

.bg-blue-402-30 {
  background-color: #C0C9DB4D;
}

.bg-blue-403 {
  background-color: #576C89;
}

.bg-blue-502-40 {
  background-color: #8CA2C240;
}

.bg-blue-503-15 {
  background-color: #3C82F626;
}

.border-blue-402 {
  border-color: #C0C9DB;
}

.border-blue-403 {
  border-color: #C5D1E1;
}

.border-blue-501 {
  border-color: #8CA2C2;
}

.border-blue-502 {
  border-color: #8CA2C280;
}

.border-blue-503, .hover-border-blue-503:hover{
  border-color: #3C82F6;
}



/* Validation Styles */
.is-invalid {
  border-width: 0.063rem !important;
  border-style: solid !important;
  border-color: #dc2626 !important;
}

.is-invalid label {
  color: #dc2626 !important;
}

.is-invalid input,
.is-invalid textarea {
  color: #dc2626 !important;
}

.is-invalid input::placeholder,
.is-invalid textarea::placeholder {
  color: rgba(220, 38, 38, 0.6) !important;
}


.border-red-402 {
  border-color: #FF8400;
}

.border-red-450 {
  border-color: #F63C3F;
}

.box-shadow-100 {
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.12);
}

.box-shadow-0-2-4-2-25 {
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.25);
}

.box-shadow-0-3-6-2-25 {
  box-shadow: 0px 3px 6px -2px rgba(0, 0, 0, 0.25);
}

.shadow-xl-0-6-14-8 {
  box-shadow: 0px 6px 14px -8px rgba(0, 0, 0, 0.32)
}

.shadow-xl-0-19-40-8 {
  box-shadow: 0px 19px 40px -8px rgba(0, 0, 0, 0.32)
}

.box-shadow-102 {
  box-shadow: 0px 0px 4px -1px rgba(0, 0, 0, 0.25), 0px 2px 10px -2px rgba(0, 0, 0, 0.15);
}

.box-shadow-0-0-50 {
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.7);
}

.text-13 {
  font-size: 0.8125rem;
}

.text-11 {
  font-size: 0.6875rem;
}

.lineheight-20 {
  line-height: 1.25rem;
}

.lineheight-16 {
  line-height: 1rem;
}

/* font-size: 13px;
line-height: 20px; */

  
.h-4-2 {
  height: 1.125rem;
}
.h-7-1 {
  height: 3.52rem;
}
.h-8-1 {
  height: 4.6875rem;
}
.h-36-2 {
  height: 9.825rem;
  /* 157px */
}
.h-28-1 {
  height: 7.25rem;
  /* 116px */
}
.h-44-2 {
  height: 11.4rem;
  /* 182px */
}
.h-56-2 {
  height: 13.875rem;
  /* 222px  */
}
.h-72-1 {
  height: 18.75rem;
}
.w-4-2 {
  width: 1.125rem;
}
.w-14-1 {
  width: 3.75rem;
}
.w-24-1 {
  width: 6.25rem;
}
.w-36-1 {
  width: 9.125rem;
  /* 146 px */
}
.w-40-1 {
  width: 10.625rem; 
   /* 170px */
}
.w-48-1 {
  width: 12.875rem;
  /* 206px */
}
.max-w-64-1 {
  max-width: 17rem;
  /* 272px */

}
.gap-1-1 {
  gap: 0.375rem;
  /* 6x */
}
.gap-2-1 {
   gap: 0.625rem; /* 10x */
}

.gap-7-1 {
   gap: 1.875rem;  /* 30px */
}


.pr-2-1 {
  padding-right: 0.625rem;  /* 10x */
}
.pl-3-1 {
  padding-left: 0.875rem;
  /* 14x */
}
.px-2-1 {
  padding-right: 0.625rem;
  /* 10x */
  padding-left: 0.625rem;
  /* 10x */
}
.py-1-1 {
  padding-top: 0.375rem; /* 6x */
  padding-bottom: 0.375rem; /* 6x */
}
.py-2-1 {
  padding-top: 0.625rem; /* 10x */
  padding-bottom: 0.625rem; /* 10x */
}
.pb-2-1 {
  padding-bottom: 0.625rem;
  /* 10px */
}
.pb-7-1 {
  padding-bottom: 1.875rem;
  /* 30px */
}
.p-3px
{
  padding: 0.1875rem;
}
.bg-heart-of-ice {
  background-color: #F5FAFF;
}

.bg-mint-cream {
  background-color: #F5FFF1;
}

.bg-dark-deep-gray {
  background-color: #282828;
}

.rounded-2xl-1
{
  border-radius: 1.25rem; 
}
.rounded-lg-10
{
  border-radius: 0.625rem; 
  /* 10px */
}

.chip {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 999px;
}

.chip.sky-blue {
  color: #535A72;
  border: 1px solid #535A72;
  background-color: #D5E1ED;
}
.chip.bg-sky-blue {
  background-color: #535A72;
  color: #D5E1ED;
}
.chip.green {
  color: #1C703E;
  border: 1px solid #1C703E;
  background-color: #E6FFF0;
}
.chip.bg-green {
  background-color: #1C703E;
  color: #E6FFF0;
}
.chip.pink {
  color: #A12BCB;
  border: 1px solid #A12BCB;
  background-color: #F8E4FF;
}
.chip.bg-pink {
  background-color: #A12BCB;
  color: #F8E4FF;
}

.chip.blue {
  color: #1D40B0;
  border: 1px solid #1D40B0;
  background-color: #EEF6FF;
}
.chip.bg-blue {
  background-color: #1D40B0;
  color: #EEF6FF;
}
.bg-customGray {
  background-color: #66798ce6;
}

.bg-grayish-blue {
  background-color: #E9EEF6;
}
.bg-grayish-blue-80 {
  background-color: #E9EEF680;
}
.bg-grayish-blue-90 {
  background-color: #E9EEF6D9;
}


/* Media Request Box Styling */
.media-request-box {
  background-color: #FFF6F1;
  border: 2px solid #FF8400;
  border-left: 8px solid #FF8400;
}
.media-request-box_1 {
  background-color: #EFFCEA;
  border: 2px solid #B5E3A4;
  border-left: 8px solid #B5E3A4;
}

/* Hide calendar icon for #expire_at (Chrome, Safari, Edge) */
#expire_at::-webkit-calendar-picker-indicator,
.hide-calendar-picker::-webkit-calendar-picker-indicator {
  opacity: 0 !important;
  display: none !important;
  pointer-events: none !important;
}

/* Firefox remove border flash */
#expire_at::-moz-focus-inner,
.hide-calendar-picker::-moz-focus-inner {
  border: 0 !important;
}

/* Firefox hide date picker icon */
#expire_at::-moz-calendar-picker-indicator,
.hide-calendar-picker::-moz-calendar-picker-indicator {
  opacity: 0 !important;
  display: none !important;
  pointer-events: none !important;
}

.ring-0-0-0-2-4:hover {
  box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px #CDD2DC;
}


.ring-0-3-6-2-25:hover {
  box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px #CDD2DC;
}

.max-width-69-rem {
  max-width: none;
}

.w-28-4 {
  width: 7.5rem;
}

.h-32-1 {
  height: 8.125rem;
}

.h-40-1 {
  height: 10rem;
}

.section-title {
  width: 100%;
}
.max-width-14-rem {
  max-width: 14rem;
}

@media (min-width: 640px) {
  .section-title {
    width: 10.625rem;
  }

  .sm\:h-40-1 {
    height: 10rem;
  }

  .sm\:h-32-1 {
    height: 8.125rem;
  }

  .sm\:w-24-4 {
    width: 6.5rem;
  }
  .max-width-69-rem {
    max-width: 69rem;
  }
  .max-width-14-rem {
    max-width: auto;
  }

  .p-60px {
    padding: 3.75rem;
  }
}

/* Profile Picture Placeholder */
.profile-picture-placeholder {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 0.625rem;
  /* 10px */
  width: 20.9375rem;
  /* 335px */
  height: 27.89rem;
  /* 446.27px */
  max-width: 100%;
  aspect-ratio: 335 / 446.27;
  background: rgba(60, 130, 246, 0.05);
  border-radius: 0.75rem;
  /* 12px */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  position: relative;
}

.profile-placeholder-icon {
  width: 3rem;
  /* 48px */
  height: 3rem;
  /* 48px */
  flex: none;
  order: 0;
  flex-grow: 0;
  position: relative;
}

.profile-placeholder-vector {
  position: absolute;
  left: 20.83%;
  right: 20.83%;
  top: 20.83%;
  bottom: 20.83%;
  border: 0.1875rem solid #576C89;
  /* 3px */
}

.profile-placeholder-title {
  width: 9.0625rem;
  /* 145px */
  height: 1.875rem;
  /* 30px */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 1.25rem;
  /* 20px */
  line-height: 150%;
  color: #576C89;
  opacity: 0.6;
  flex: none;
  order: 1;
  flex-grow: 0;
  text-align: center;
}

/* This is the only way to override the iOS Safari default centering */
input[type="date"]::-webkit-date-and-time-value {
  text-align: left !important;
  display: block;
}

/* Force arrows to show in Safari/Chrome */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: inner-spin-button !important;
  opacity: 1 !important;
  /* Safari sometimes needs a little padding to show the arrows */
  padding: 2px; 
}

.input-type-number-spin {
  -webkit-appearance: inner-spin-button !important;
  opacity: 1 !important;
  /* Safari sometimes needs a little padding to show the arrows */
  padding: 2px; 
}
/* line 11, app/assets/stylesheets/actiontext.scss */
.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

/* line 20, app/assets/stylesheets/actiontext.scss */
.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* line 29, app/assets/stylesheets/actiontext.scss */
.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
  word-break: break-all;
}

/* line 36, app/assets/stylesheets/actiontext.scss */
.trix-content ol,
.trix-content ul {
  list-style-position: inside;
}

/* line 41, app/assets/stylesheets/actiontext.scss */
.trix-content ol {
  list-style: decimal;
}

/* line 45, app/assets/stylesheets/actiontext.scss */
.trix-content ul {
  list-style: initial;
}

/* line 51, app/assets/stylesheets/actiontext.scss */
trix-editor ol,
trix-editor ul {
  list-style-position: inside;
}

/* line 56, app/assets/stylesheets/actiontext.scss */
trix-editor ol {
  list-style: decimal;
}

/* line 60, app/assets/stylesheets/actiontext.scss */
trix-editor ul {
  list-style: initial;
}

/* line 64, app/assets/stylesheets/actiontext.scss */
trix-editor blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

/* line 71, app/assets/stylesheets/actiontext.scss */
trix-editor pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}
.ss-main {
  background-color: transparent;
}
.ss-main .ss-content {
  padding: 10px;
}
.ss-main .ss-multi-selected {
  padding: 10px;
}
.ss-search {
  display: none;
}
.ss-option {
  cursor: pointer;
}
.ss-value {
  cursor: pointer;
  background-color: #bfdbfe;
  color: #1e40af;
  display: inline-flex;
  margin: 3px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 25px;
  border: 1px solid #1e40af;
}
.ss-value-delete {
  margin-left: 7px;
}
/**
* General Uppy styles that apply to everything inside the .uppy-Root container
*/
.uppy-Root {
  position: relative;
  box-sizing: border-box;
  color: #333;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir=rtl] .uppy-Root,
.uppy-Root[dir=rtl] {
  text-align: right;
}

.uppy-Root *,
.uppy-Root *::before,
.uppy-Root *::after {
  box-sizing: inherit;
}

.uppy-Root [hidden] {
  display: none;
}

.uppy-u-reset {
  top: auto;
  left: auto;
  z-index: auto;
  display: inline;
  float: none;
  clear: none;
  min-width: 0;
  max-width: none;
  min-height: 0;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  color: inherit;
  font-weight: normal;
  font-size: inherit;
  font-family: inherit;
  font-style: normal;
  font-variant: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  white-space: normal;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  vertical-align: baseline;
  -webkit-hyphens: none;
          hyphens: none;
  unicode-bidi: normal;
  list-style: none;
  empty-cells: show;
  background: none;
  border: 0;
  border: medium none currentColor;
  border-radius: 0;
  border-image: none;
  border-collapse: separate;
  border-spacing: 0;
  outline: medium none invert;
  box-shadow: none;
  transform: none;
  transform-origin: 50% 50% 0;
  transform-style: flat;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  visibility: visible;
  cursor: auto;
  opacity: 1;
  transition: none 0s ease 0s;
  -webkit-appearance: none;
}

[dir=rtl] .uppy-u-reset {
  text-align: right;
}

.uppy-c-textInput {
  padding: 6px 8px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.uppy-size--md .uppy-c-textInput {
  padding: 8px 10px;
}
.uppy-c-textInput:focus {
  border-color: rgba(34, 117, 215, 0.6);
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.15);
}
[data-uppy-theme=dark] .uppy-c-textInput {
  color: #eaeaea;
  background-color: #333;
  border-color: #333;
}
[data-uppy-theme=dark] .uppy-c-textInput:focus {
  border-color: #525252;
  box-shadow: none;
}

.uppy-c-icon {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  fill: currentColor;
}

.uppy-c-btn {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  transition-duration: 0.3s;
  transition-property: background-color, color;
  -webkit-user-select: none;
          user-select: none;
}
[dir=rtl] .uppy-c-btn {
  text-align: center;
}

.uppy-c-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.uppy-c-btn::-moz-focus-inner {
  border: 0;
}

.uppy-c-btn-primary {
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  background-color: #2275d7;
  border-radius: 4px;
}
.uppy-c-btn-primary:hover {
  background-color: #1b5dab;
}
.uppy-c-btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
}
.uppy-size--md .uppy-c-btn-primary {
  padding: 13px 22px;
}
[data-uppy-theme=dark] .uppy-c-btn-primary {
  color: #eaeaea;
}
[data-uppy-theme=dark] .uppy-c-btn-primary:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-c-btn-primary::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-c-btn-primary:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

.uppy-c-btn-link {
  padding: 10px 15px;
  color: #525252;
  font-size: 14px;
  line-height: 1;
  background-color: transparent;
  border-radius: 4px;
}
.uppy-c-btn-link:hover {
  color: #333;
}
.uppy-c-btn-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
}
.uppy-size--md .uppy-c-btn-link {
  padding: 13px 18px;
}
[data-uppy-theme=dark] .uppy-c-btn-link {
  color: #eaeaea;
}
[data-uppy-theme=dark] .uppy-c-btn-link:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-c-btn-link::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-c-btn-link:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}
[data-uppy-theme=dark] .uppy-c-btn-link:hover {
  color: #939393;
}

.uppy-c-btn--small {
  padding: 7px 16px;
  font-size: 0.9em;
  border-radius: 2px;
}
.uppy-size--md .uppy-c-btn--small {
  padding: 8px 10px;
  border-radius: 2px;
}
.uppy-DragDrop-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #fff;
  border-radius: 7px;
  cursor: pointer;
}
.uppy-DragDrop-container::-moz-focus-inner {
  border: 0;
}
.uppy-DragDrop-container:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
}

.uppy-DragDrop-inner {
  margin: 0;
  padding: 80px 20px;
  line-height: 1.4;
  text-align: center;
}

.uppy-DragDrop-arrow {
  width: 60px;
  height: 60px;
  margin-bottom: 17px;
  fill: #e0e0e0;
}

.uppy-DragDrop--isDragDropSupported {
  border: 2px dashed #adadad;
}

.uppy-DragDrop--isDraggingOver {
  background: #eaeaea;
  border: 2px dashed #2275d7;
}
.uppy-DragDrop--isDraggingOver .uppy-DragDrop-arrow {
  fill: #939393;
}

.uppy-DragDrop-label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.15em;
}

.uppy-DragDrop-browse {
  color: #2275d7;
  cursor: pointer;
}

.uppy-DragDrop-note {
  color: #adadad;
  font-size: 1em;
}
.uppy-FileInput-container {
  margin-bottom: 15px;
}

.uppy-FileInput-btn {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: 1;
  background: none;
  border: 0;
  -webkit-appearance: none;
  padding: 10px 15px;
  color: #14457f;
  font-size: 0.85em;
  font-family: sans-serif;
  border: 1px solid #14457f;
  border-radius: 8px;
  cursor: pointer;
}
.uppy-FileInput-btn:hover {
  color: #fff;
  background-color: #14457f;
}
.uppy-ProgressBar {
  /* no important */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 3px;
  transition: height 0.2s;
}

.uppy-ProgressBar[aria-hidden=true] {
  /* no important */
  height: 0;
}

.uppy-ProgressBar-inner {
  width: 0;
  height: 100%;
  /* no important */
  background-color: #2275d7;
  box-shadow: 0 0 10px rgba(34, 117, 215, 0.7);
  transition: width 0.4s ease;
}

.uppy-ProgressBar-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  /* no important */
  display: none;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}
/* line 6, app/assets/stylesheets/uppy.scss */
.uppy-ProgressBar {
  height: 4px;
}

/* line 10, app/assets/stylesheets/uppy.scss */
.uppy-FileInput-container {
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

/* line 14, app/assets/stylesheets/uppy.scss */
.uppy-FileInput-container + .uppy-ProgressBar[aria-hidden='false'] {
  margin-top: 10px;
}

/* line 19, app/assets/stylesheets/uppy.scss */
.uppy-FileInput-btn {
  background-color: #ffffff;
  border-color: #9ca3af;
  color: #4b5563;
}

/* line 23, app/assets/stylesheets/uppy.scss */
.uppy-FileInput-btn:hover {
  background-color: #ffffff;
  color: #4b5563;
}

/* line 27, app/assets/stylesheets/uppy.scss */
.uppy-FileInput-btn:focus {
  outline: none;
}

/* line 32, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-container {
  background-color: transparent;
  font-family: inherit;
}

/* line 33, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-container:focus {
  box-shadow: none;
}

/* line 38, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-container + .uppy-ProgressBar {
  margin-top: -10px;
  padding: 0 9px;
}

/* line 44, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-note {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 0.75rem;
}

/* line 50, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-inner {
  padding: 1.25rem 1.5rem;
  line-height: 1;
  color: #4b5563;
}

/* line 56, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-browse {
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #2563eb;
}

/* line 65, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* line 70, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-arrow {
  width: 45px;
  height: 45px;
  margin-bottom: 5px;
}

/* line 76, app/assets/stylesheets/uppy.scss */
.uppy-ProgressBar-inner {
  border-radius: 4px;
}

/* line 78, app/assets/stylesheets/uppy.scss */
.uppy-ProgressBar-inner > .uppy-DragDrop-note:last-child {
  margin-bottom: 0;
  display: block;
}

/* line 84, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-note {
  display: block;
  margin-bottom: 12px;
}
:root {
  --fc-border-color: #eee;
  --fc-neutral-text-color: #d1d5db;
  --fc-now-indicator-color: #374151;
  --fc-today-bg-color: transparent;
  --fc-event-border-color: 'transparent';
}

.fc-event, 
.fc-event-draggable, 
.fc-event-resizable, 
.fc-event-start, 
.fc-event-end, 
.fc-event-future, 
.fc-daygrid-event, 
.fc-daygrid-dot-event, 
.selected-event {
    padding: 0 !important;
}

.selected-event {
  box-shadow: 0px 2px 6px 2px rgba(0,0,0, 0.3), 0px 1px 2px 0px rgba(0,0,0, 0.15);
}

.fc-timegrid-event-harness.fc-timegrid-event-harness-inset:has(.selected-event) {
  --fc-page-bg-color: transparent;
  box-shadow: 0px 2px 6px 2px rgba(0,0,0, 0.3), 0px 1px 2px 0px rgba(0,0,0, 0.15);
  border-radius: 3px;
}

.fc-daygrid-event {
  cursor: pointer;
  padding: 2px;
}

.fc-timegrid-event {
  padding: 2px;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event {
  box-shadow: 0;
}

.fc-event-main {
  cursor: pointer;
  position: relative;
}

.fc-timegrid-event-harness::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.05); /* black background with 50% opacity */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease; /* smooth transition */
}

.fc-timegrid-event-harness:hover::after {
  opacity: 1;
}

.fc .fc-timegrid-divider {
  padding: 0;
}

.fc .fc-timegrid-slot-minor {
  border: none;
}

.fc .fc-timegrid-slot {
  height: 2.2em;
}

.fc-day-today .fc-daygrid-day-number {
  color: white;
  background-color: #3788d8;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.fc-timegrid .fc-day-today {
  color: white;
  background-color: #3788d8;
}

.fc .fc-timegrid-now-indicator-line {
  border-width: 2px 0 0 0;
}

/* Hide scrollbars */

/* Chrome and Safari */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* Internet Explorer */
* {
  -ms-overflow-style: none;
}


@keyframes progress {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.animate-progress {
  animation: progress 1.5s infinite linear;
}
.dm-form trix-toolbar {
  display: none !important;
}

.dm-form form {
  padding: 0.75rem;
  background: #F3F4F6;
  display: flex;
  gap: 0.7rem;
}
.notes-form-field {
  border-color: #BBBBBB;
}

/*# sourceMappingURL=application.css-487035107210a28ef9c07fb276d2a1f3dcb4b3865839d63642d5ebff1f276465.map */
