@font-face {
  font-family: 'lato';
  src: url('./fontz/Lato-Regular.ttf?url') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'lucky';
  src: url('./fonts/LuckiestGuy-Regular.ttf?url') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon, 
.goog-te-gadget-simple, 
.goog-te-balloon-frame, 
#goog-gt-tt, 
.goog-tooltip, 
.goog-tooltip:hover, 
.goog-text-highlight, 
.goog-te-menu-value {
  display: none !important;
}

html, body {
  margin: 0;
  font-family: 'lato', Arial, Helvetica, sans-serif;
  background-color: #fdf6e3; /* light beige/custard */
  color: #2f3e3e;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

.main-body-section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    overflow-y: scroll;
    padding-bottom: 50px;
    padding-top: 20px;
 }

button {
  background: #fe9628;
  color: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input {
  background: white;
  color: #2f3e3e;
  border-radius: 8px;
}

/* 3D Button Styles */
.button-3d {
  background: linear-gradient(145deg, #fe9628, #e08323);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  
  /* 3D Effect with multiple box-shadows */
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.2),           /* Main shadow */
    0 8px 16px rgba(254, 150, 40, 0.3),     /* Colored glow */
    inset 0 2px 4px rgba(255, 255, 255, 0.3), /* Inner highlight */
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);    /* Inner shadow */
}

.guide-dashashboard-menu {
    font-family: 'lucky', Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    margin-top: 5px;
    position: absolute;
    top: 60px;
}

.menu-content div#background-content {
    background: #fdf6e3;
}

.menu-content div#background-content {
    background: #fdf6e3;
    color: #153b38;
    font-family: 'lato', Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
}

.button-3d:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.25),
    0 12px 24px rgba(254, 150, 40, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.button-3d:active {
  transform: translateY(1px);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(254, 150, 40, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    inset 0 -1px 2px rgba(255, 255, 255, 0.2);
}

/* Alternative 3D Button - Raised Style */
.button-3d-raised {
  background: #24afc2;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  
  /* Classic raised 3D effect */
  box-shadow: 
    0 6px 0 #1a8b9a,                       /* Bottom edge */
    0 8px 12px rgba(0, 0, 0, 0.3);         /* Drop shadow */
}

.button-3d-raised:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 7px 0 #1a8b9a,
    0 10px 16px rgba(0, 0, 0, 0.35);
}

.button-3d-raised:active {
  transform: translateY(3px);
  box-shadow: 
    0 3px 0 #1a8b9a,
    0 5px 8px rgba(0, 0, 0, 0.2);
}

/* Ionic Button with 3D Effect */
.button-3d-ionic {
  background: linear-gradient(145deg, #fe9628, #e08323);
  color: white;
  border-radius: 12px;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(254, 150, 40, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  
  transform: translateY(0);
  transition: all 0.2s ease;
}

.button-3d-ionic:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.25),
    0 12px 24px rgba(254, 150, 40, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.center-form-button {
   width: 100%;
}

.clear-biometric-button {
   background: #24afc2;
   color: #fff;
   font-size: 12px;
   margin-left: 10px;
   text-decoration: underline;
}

h1, h2, h3 {
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #555;
}

h1.title {
  font-size: 3rem;
  letter-spacing: -0.5px;
  text-align: center;
  color: #555;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease both;
}

video::-webkit-media-controls-panel {
  border-radius: 0 0 12px 12px;
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
  color: #fdf6e3;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}

video::-webkit-media-controls-timeline {
  background: #fdf6e3;
  height: 6px;
  border-radius: 3px;
}

.md.in-segment.segment-button-has-label.segment-button-has-label-only.segment-button-layout-icon-top.ion-activatable.ion-activatable-instant.ion-focusable.hydrated.segment-button-checked {
  background-color: #fe9628;
  color: white;
  font-size: 12px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.front-page-subtitle {
  text-align: center;
  color: #2d2d2d;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-family: 'lato', Arial, Helvetica, sans-serif;
}

p {
  font-family: 'lato', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
}

#save-profile-button {
    margin-top: 20px;
    margin-left: 10px;
    background: #dc3545;
    color: #fff;
    font-size: 1rem;
    width: 200px;
    height: 50px;
    margin-top: 15px;
    margin-bottom: 20px;
    max-width: 300px;
}

#cancel-profile-button {
    margin-top: 20px;
    margin-left: 10px;
    background: #dc3545;
    color: #fff;
    font-size: 1rem;
    width: 200px;
    height: 50px;
    margin-top: 15px;
    margin-bottom: 20px;
    max-width: 300px;
}

.login-button {
    background: #fe9628;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    font-family: 'lato', Arial, Helvetica, sans-serif;
}

#forgot-password-button {
    background: #24afc2;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

#signup-button {
    background: #28a745;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

#back-to-login-button {
    background: #fe9628;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

#save-profile-button.madeEdit {
    background: #28a745;
}

strong {
  color: #153b38;
}

.goog-te-banner-frame {
  display: none !important;
}

#checkout {
  width: 100vw;
}

.hidden {
  display: none;
}

.guide-title {
  font-size: 2rem;
  text-align: center;
  color: #555;
  margin: 0;
}

.suggest-archetype-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
} 

.suggest-archetype-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10%;
}

.suggest-archetype-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  width: 100%;
  overflow-y: auto;
}

.polaroid-suggest-archetype .profile-photo-section {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.select-archetype-modal-body .guide-profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 80vw;
  max-height: 80vh;
  background-color: #fffdf8;
  justify-content: flex-start;
}

/* Container for the file input section */
.profile-picture-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: fit-content;
    justify-self: center;
}

/* Style for the file input instruction text */
.profile-picture-instruction {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

/* Style for uploaded image preview */
.profile-picture-preview {
    width: 200px;
    height: 200px;
    border-radius: 10%;
    object-fit: cover;
    border: 4px solid #24afc2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.profile-picture-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

  /* Remove button styling */
  .remove-picture-button {
      position: absolute;
      background: #fff;
      border: none;
      text-decoration: underline;
      cursor: pointer;
      font-size: 0.9rem;
      padding: 6px 8px;
      transition: color 0.2s ease;
      bottom: -5px;
      left: -10px;
      border: 2px solid #999;
      border-radius: 50%;
  }

  .remove-picture-button:hover {
      transform: scale(1.5);
  }

  /* File input with drag and drop styling */
  .file-drop-zone {
      border: 2px dashed #24afc2;
      border-radius: 8px;
      text-align: center;
      background: rgba(36, 175, 194, 0.05);
      transition: all 0.3s ease;
      cursor: pointer;
      min-width: 300px;
      height: 100px;
  }

  .file-drop-zone:hover {
      border-color: #fe9628;
      background: rgba(254, 150, 40, 0.05);
  }

  .file-drop-zone.drag-over {
      border-color: #fe9628;
      background: rgba(254, 150, 40, 0.1);
      transform: scale(1.02);
  }

  .select-presumed-gender-button {
      background: #24afc2;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      padding: 10px;
  }

  /* Icon for file upload */
  .upload-icon {
      font-size: 3rem;
      color: #24afc2;
      margin-bottom: 5px;
  }

  /* Upload text styling */
  .upload-text {
      color: #666;
      font-size: 1rem;
      margin-top: 5px;
  }

  .upload-text-bold {
      font-weight: 600;
      color: #24afc2;
  }

.guide-type-item {
  width: 100%;
}

.guide-type-item.selected {
  background-color: #ffefc4;
}

.time-frames-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
}

.time-frame-button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 25px;
  background-color: #24afc2;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.profile-motivation {
  font-size: 1rem;
  text-align: center;
  margin: 0.5rem 20px 1rem 20px;
  color: #333;
  -ms-overflow-style: none;   /* hides scrollbar for IE/Edge (legacy) */
  scrollbar-width: none;      /* hides scrollbar for Firefox */
}

.view-details-button {
  background-color: #24afc2;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.guide-profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-note {
  width: 100%;
  max-width: 600px; /* Prevent videos from being too large */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 10px 0; /* Add some vertical spacing */
}

.video-note:hover {
  transform: translateY(-2px); /* Slight lift on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-note:focus {
  outline: 2px solid #fe9628; /* Custom focus indicator */
  outline-offset: 2px;
}

.confirm-video-button, .cancel-video-button {
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin: 10px 5px;
  transition: background-color 0.2s ease;
}

.block {
  display: block;
}

.spinning {
  display: inline-block;
  animation: spin 2s linear infinite;
}

.uploading-video {
  font-size: 1rem;
  animation: pulsing 2s infinite;
}

@keyframes pulsing {
  0% {
    transform: scale(.25);
  }
  50% {
    transform: scale(.50);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.confirm-video-button {
  background: #24afc2;
  width: 100%;
}

.cancel-video-button {
  background: #d9534f;
  width: 50%;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .video-note {
    max-width: 100%;
    border-radius: 8px; /* Slightly smaller radius on mobile */
  }
}

.polaroid {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #fffdf8;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 0.75rem 0.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 900px;
  justify-content: space-around;
}

.alert-modal-header {
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 5px;
}

.reply-card {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #fffdf8;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 0.75rem 0.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 900px;
  justify-content: space-around;
}

ion-tab-button.tab-selected div.the-tab-button.tab-3d {
    border-radius: 25%;
}

ion-tab-button div.the-tab-button.tab-3d.tab-button-inner {
  background: none;
  background: none;
  border-radius: 25%;
  height: 55px;
  width: 58px;
  padding: 5px;
  margin-top: -5px;
}

ion-tab-button div.the-tab-button.tab-3d.phone-tab-button-inner {
  margin-top: -5px;
}

.edit-profile-outer-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #fffdf8;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 0.75rem 0.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 900px;
  justify-content: space-around;
  align-items: center;
}

.editprofilecontainer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.editprofilesection {
  height: auto;
  max-height: 600px;
  overflow-y: scroll;

}

.editprofilesection > div {
  margin: 0 auto;
}

.editprofilesection input {
  background-color: #fdf6e3;
  border: 1px solid #fe9628;
  border-radius: 5px;
}


#select-label.select-wrapper {
    display: block;
    font-size: 1.5rem;
    text-align: center;
}

.select-element {
    display: flex;
    font-size: 1.5rem;
    padding: 10px;
    width: fit-content;
    text-align: center;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
}

.select-element .select-option {
  display: block;
  font-size: 1.5rem;
  padding: 10px;
  width: 100%;
  text-align: center;
}

button.button-native {
    background: none;
}

#whatsapp-phone-select {
  position: relative;
  left: 0;
  width: 108px;
  height: 37px;
  text-align: left;
  margin-bottom: 0;
  border: none;
  font-size: 14px;
  background: none;
}

.social-links-input {
  justify-content: center;
}


.polaroid div.profile-photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
} 

.polaroid > div.caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
} 

.login-container img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.login-form input {
  margin: 10px 0;
  text-align: left;
  border: 2px solid #24afc2;
  border-radius: 3px;
}

.login-form input::placeholder {
  color: #999;
  font-size: 1.5rem;
  text-align: left;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
}

.polaroid.conversation {
  max-width: 300px;
}

.polaroid div.profile-photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  max-width: 300px;
} 

.polaroid:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.polaroid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.polaroid .guide-profile-image {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.caption {
  margin-top: 0.75rem;
}

.caption h3 {
  margin: 0.5rem 0;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.caption  {
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.caption button:hover {
  background-color: #3c8aac;
}

.profile-links-section-profile {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  justify-items: center;    
  align-items: start;
  align-content: start;
  width: fit-content;       
  margin: 0 auto;    
}

.profile-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 10px;
  justify-items: center;   
  align-items: start;    
  align-content: start; 
  width: fit-content;       
  margin: 0 auto;    
}

.letter-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.letter-card {
  display: flex;
  padding: 10px;
  background-color: #fffdf8;
  border: 1px solid #ddd0b5;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
  position: relative;
  line-height: 1.6;
  color: #3b2f2f;
  background-image: linear-gradient(to bottom, rgba(250,250,250,0.7) 97%, rgba(230,220,200,0.2) 100%);
  background-size: 100% 1.8em;
  transition: transform 0.2s ease;
  margin: 20px auto;

}

.letter-card:hover {
  transform: translateY(-4px);
}

.stamp {
  position: absolute;
  text-align: right;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  opacity: 0.7;
}

.letter-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.letter-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #3b2f2f;
}

.letter-content span {
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.5rem;
  color: #2b1e1e;
}

.letter-content p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.reward {
  font-size: 1rem;
  color: #766c60;
  margin-top: 1rem;
}

  /* Hide the default file input */
.profile-picture-input {
    display: none;
}

/* Style the custom file input label */
.profile-picture-label {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #24afc2, #fe9628);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.profile-picture-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #fe9628, #24afc2);
}

.profile-picture-label:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.send-message-to-guide-info-1-inner-2 {
   padding-top: 50px;
}

/* Container for the file input section */
.profile-picture-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: fit-content;
    justify-self: center;
}

/* Style for the file input instruction text */
.profile-picture-instruction {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

/* Style for uploaded image preview */
.profile-picture-preview {
    width: 200px;
    height: 200px;
    border-radius: 10%;
    object-fit: cover;
    border: 4px solid #24afc2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.profile-picture-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Remove button styling */
.remove-picture-button {
    position: absolute;
    background: #fff;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 6px 8px;
    transition: color 0.2s ease;
    bottom: -5px;
    left: -10px;
    border: 2px solid #999;
    border-radius: 50%;
}

.remove-picture-button:hover {
    transform: scale(1.5);
}

.note-profile-picture {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #24afc2;
}

.note-header-with-img {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.reply-btn {
  display: inline-block;
  background-color: #6cb3c9;
  border: none;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-family: 'Patrick Hand', cursive;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.reply-btn:hover {
  background-color: #5396ad;
}

.single-conversation-details {
  padding: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.customer-name {
  font-weight: bold;
  color: #153b38;
}

.conversation-message-container {
  margin: 20px 0;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  max-height: 60vh;
  overflow-y: auto;
  background-color: #f7f8f5;
  margin-bottom: 5px;
}

.manage-finances-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.reply-to-conversation-button {
  background-color: #24afc2;
  border: none;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-top: 0;
}

.back-to-conversations {
  color: #ff7e00;
  font-size: 1.2rem;
  cursor: pointer;
}

.type-of-reply-required {
  font-size: .8rem;
  text-align: center;
  color: #555;
}

.reply-to-conversation-form {
  padding: 20px;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.reply-to-note-textarea {
  width: 100%; /* Changed from 90% to work better with container */
  max-width: 100%; /* Ensure it doesn't exceed container */
  height: 150px;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  box-sizing: border-box; /* Include padding and border in width */
}

.conversation-message {
  background-color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  color: #2f3e3e;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

#root {
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  position: relative;
}

#checkout-element {
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  overflow-y: auto;
  padding-bottom: 20%;
}

iframe[name="embedded-checkout"] {
  min-width: 100vw;
  max-width: 100vw;
  min-height: 100vh !important;
}

.lucky-font {
    font-family: 'lucky', Arial, Helvetica, sans-serif;
}

.lato-font {
    font-family: 'lato', Arial, Helvetica, sans-serif;
}

.cta {
  color: #333;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  font-size: 32px;
}

.header-row {
  justify-content: flex-start;
  gap: 1.5rem;
}
.header-button {
  cursor: pointer;
}
.header-button.header-button-sinhala {
  cursor: url(elephant.cur), pointer;
}
.learn-more-button {
  cursor: url(elephant.cur), pointer;
  background: #24afc2;
  border: #fe9628 3px solid;
  font-size: 1rem;
  color: #fff;
  border-radius: 10px;
  padding: 5px;
}
.hamburger {
  display: none;
}
.site-title {
  text-align: left;
  font-size: 1.5rem;
  margin: 0 0 0 60px;
}
.mobile-header {
  padding: 1rem;
  padding-bottom: 0;
  height: 56px;
}
.mobile-remove-bottom-margin {
  margin-bottom: auto;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  width: 75px;
  height: 75px;
}
.pulsing-boggler-logo {
  animation: pulse .9s infinite;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin: 0 auto;
  align-items: center;
  width: fit-content;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -10px);
}
.main-nav.open {
  display: flex;
  z-index: 2;
}
.form-select {
  font-size: 24px;
  padding: 10px;
  width: 274px;
  text-align: center;
}
.gender-radio {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  cursor: pointer;
}
.cta-button {
  background: #222;
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: 4px;
  text-decoration: none;
  margin: 0.2em 0;
  font-weight: 600;
  transition: background 0.2s;
}
.cta-button:hover {
  background: #444;
}
.payment-return-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.cta-button.lets-begin {
  margin-top: 20px;
  font-size: 1.5rem;
  min-width: 250px;
  width: auto;
  min-height: 75px;
  cursor: url(./elephant.cur), pointer;
}
h1 {
  font-family: 'lucky', serif;
  font-size: 2.5rem;
  margin: 0.5rem 0;
  text-align: center;
  color: #1e3c3a; /* dark green */
}
h2, p {
    display: block;
}
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #fff8e1;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}
nav a {
    color: #1e3c3a;
    text-decoration: none;
    font-weight: 600;
}
.flex-column {
      display: flex;
      flex-direction: column;
    }
.read-paragraph {
  font-size: 1.2rem;
  line-height: 1.6;
}
.paragraph-read {
  animation-name: textGrow;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.hero-cta {
  margin-top: 2rem;
}
.bogglerman-and-boggler-woman {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.bogglerman {
  display: flex;
  width: 30%;
  height: auto;
}
.bogglerwoman {
  display: flex;
  width: 30%;
  height: auto;
}
#apex-app-icon-small {
  width: 100px;
  height: 100px;
}
#about-founder {
  display: flex;
  flex-direction: row;
}
#about-founder div {
  text-align: left;
  flex-direction: column;
  padding: 1rem;
  margin: 0 auto;  
}
#about-founder div.written-content {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #2f3e3e;
  background-color: #fff8e1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px; 
}
#about-apex-in-buckish .flex-column div#apex-in-buckish {
      display: flex;
      flex-direction: row;
    }
#about-apex-in-buckish .flex-column div#apex-in-buckish div {
  display: flex;
  text-align: left;
  padding: 1rem;
  margin: 0 auto;  
}
.apex-in-buckish-inner-container {
  display: flex;
  flex-direction: row;
}
.buckish-about-section {
  display: flex;
  flex-direction: row;
}
.buckish-about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.buckish-about-h1 {
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 20px;
}
.buckish-whofor-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.buckish-whofor-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.buckish-whofor-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.messaging-apps-icon-container-boggler {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: space-evenly;
}
.messaging-apps-icon-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: space-evenly;
}
.messaging-icon-outer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
.messaging-icon-outer-container span {
    font-family: Arial, Helvetica, sans-serif;
    padding: 6px;
    font-size: .8rem;
    color: #000;
    text-align: center;
    text-shadow:rgba(0, 0, 0, 0.5) 0px 1px 2px;
}
.sms-icon-container, .whatsapp-icon-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 80px;
  height: 80px;
  border-radius: 20%;
  padding: 10px;
  background-color: #fff8e1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}
.sms-icon-container img, .whatsapp-icon-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 100px;
}
.messaging-icon-outer-container-whatsapp, .messaging-icon-outer-container-whatsapp span, .messaging-icon-outer-container-whatsapp div, .messaging-icon-outer-container-whatsapp div img {
  display: flex;
  cursor: url(flower_red.cur), pointer;
}
.messaging-icon-outer-container-sms, .messaging-icon-outer-container-sms span, .messaging-icon-outer-container-sms div, .messaging-icon-outer-container-sms div img {
  display: flex;
  cursor: url(flower_blue.cur), pointer;
}

.meme-video {
  mask-image: linear-gradient(to bottom, white 83%, transparent 100%);
  border-radius: 20px;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  background: #fefaf2;
}

/* Hide default controls */
video {
  display: block;
  cursor: pointer;
}

/* Custom play button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.8);
  color: #153b38;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.play-button:hover {
  background: rgba(255,255,255,0.95);
  transform: translate(-50%, -50%) scale(1.05);
}

.boggler-background {
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  position: relative;
  display: block;
  width: 100%;
  border-radius: 20px;
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.buckish-about-text-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.buckish-about-text-buttons img {
  width: 150px;
  height: 150px;
}
.about-the-app {
  display: flex;
  flex-direction: row;
}
.about-the-app div {
  text-align: left;
  flex-direction: column;
  padding: 1rem;
  margin: 0 auto;  
}
#about-the-app {
    display: flex;
    flex-direction: row;
}
#about-the-app div {
  display: flex;
  text-align: left;
  flex-direction: column;
  padding: 1rem;
  margin: 0 auto;  
}
.about-the-app div.written-content {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    color: #2f3e3e;
    background-color: #fff8e1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px; 
}
.app-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.ghosted-explanation {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 30px;
}
.text-boggler-headings-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.text-boggler-heading-subtitle {
  font-size: 55px;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #555;
  text-align: center;
  max-width: 600px;
}
.app-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: unset;
}
.app-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #2f3e3e;
  background-color: #fff8e1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 1rem;
  border: 1px solid #ddd;
}
.profile-pic {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
}
.descriptor-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
section h2 {
  font-family: 'lucky', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
section p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
section h2 {
  font-family: 'lucky', serif;
  color: #1e3c3a;
}
#about {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#about .images-container {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  margin-top: 20px;
}
#about .images-container img {
  display: flex;
  margin: 10px auto;
  width: 250px;
}
.written-content {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    color: #2f3e3e;
    background-color: #fff8e1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px; 
}

.login-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 95vw;
  min-height: 80vh;
}

.profile-subtext {
  font-size: .8rem;
  color: #555;
}

.guide-profile-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #153b38;
  margin-bottom: 0;
}

.profile-photo-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Profile photo style */
.profile-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.guide-age-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: "none";
  color: #3b2e20;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  width: 50px;
  height: 20px;
}
.my-age {
  position: absolute;
  right: 0px;
  font-size: 12px;
  top: 50px;
  background: linear-gradient(135deg, rgb(1, 41, 13), rgb(33, 187, 79));
  color: #fff;
  padding: 4px;
  border-radius: 12px;
}

.the-age-group {
  position: absolute;
  right: 0px;
  font-size: 12px;
  top: 90px;
  background: linear-gradient(135deg, rgb(1, 41, 13), rgb(33, 187, 79));
  color: #fff;
  padding: 4px;
  border-radius: 12px;
}

/* Age credential style */
.guide-credential-badge {
  display: flex;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #7aff83, #05a246);
  color: #3b2e20;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
  white-space: nowrap;
  letter-spacing: 0.5px;
  max-width: 150px;
  overflow-x: scroll;
}

/* Optional hover glow */
.profile-photo-wrapper:hover .guide-credential-badge {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(110, 255, 66, 0.6);
  transition: 0.2s ease;
}

.guide-credential-badge span.scrollText {
  animation: scrollingText 20s linear infinite;
}

.guide-credential-badge span.scrollText span {
  display: inline-block;
  padding-right: .3rem; /* space between duplicates if needed */
}

.set-availability-day {
  font-size: 20px;
  margin: 5px;
  padding-left: 10px;
  border: 2px solid #24afc2;
  border-radius: 8px;
  cursor: pointer;
}

.time-slot-inputs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
}

.time-slot-inputs label:nth-child(2) {
  font-size: 16px;
  margin-left: 20px;
}

.time-slot-inputs input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Appointments badge style */
.guide-appointments-badge {
  display: flex;
  align-items: center;
  flex-direction: row;
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ffcc7a, #ff8c42);
  color: #3b2e20;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  backdrop-filter: blur(3px);
  white-space: nowrap;
  letter-spacing: 0.5px;
  max-width: 80%;
  overflow-x: scroll;
}

.guide-appointments-badge .both-appointments {
  font-size: 10px;
}

.guide-appointments-badge .single-appointment {
  font-size: 14px;
}

.guide-appointments-badge span.scrollText {
  animation: scrollingText 10s linear infinite;
}

.guide-appointments-badge span.scrollText span {
  display: inline-block;
  padding-right: .2rem; /* space between duplicates if needed */
}

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

/* Optional hover glow */
.profile-photo-wrapper:hover .guide-appointments-badge {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(255, 140, 66, 0.6);
  transition: 0.2s ease;
}

.location-search-input {
  width: 80%;
  max-width: 300px;
  padding: 10px;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.places-suggestion-item {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.survey-option.selected.option-0 {
  background-color: #ff7e00;
}

.survey-option.selected.option-1 {
  background-color: #1c865a;
}

.survey-option.selected.option-2 {
  background-color: #3454bf;
}

.survey-option.selected.option-3 {
  background-color: #c73ce3;
}

.survey-option.selected.option-4 {
  background-color: #e34343;
}

.add-credentials-final-option-button.add-another {
  font-size: .8rem;
  cursor: pointer;
  color: #fff;
  padding: 10px 10px;
  border-radius: 8px;
}

.add-credentials-final-option-button.add-another:hover {
  background: #ff7e00;
}

.add-credentials-final-option-button.remove {
  font-size: .8rem;
  cursor: pointer;
  color: #fff;
  padding: 10px 10px;
  border-radius: 8px;
  margin-top: 5px;
}

.add-credentials-final-option-button.remove:hover {
  background: #c73ce3;
  border: #ff7e00 6px solid;
}

.country-selection-input::-webkit-input-placeholder {
  color: #fff;
  font-style: italic;
}

/* For Mozilla Firefox */
.country-selection-input::-moz-placeholder {
  color: #fff;
  font-style: italic;
}

/* For Internet Explorer 10 and 11 */
.country-selection-input:-ms-input-placeholder {
  color: #fff;
  font-style: italic;
}

/* Standard syntax (for future compatibility) */
.country-selection-input::placeholder {
  color: #fff;
  font-style: italic;
}

.profile-country-badge {
  position: absolute;
  top: 10px;
  right: 10px;
}

.alert-modal-ok-button {
  background: #24afc2;
  border: #24afc2 6px solid;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 8px;
}

.add-credentials-final-option-button.add-another {
  background: #24afc2;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 8px;
}

  .scheduled-call-item {
    border: 2px solid #24afc2;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    background-color: #f9f9f9;
  }

  .accordion-content {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height: 40px;
    font-weight: bold;
    background-color: #24afc2;
    color: #fff;
    padding: 0 15px;
    margin-top: 10px;
    border-radius: 8px;
  }

  .scheduled-calls-list {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  .segment-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .segment-container .segment-button {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #24afc2;
    cursor: pointer;
    margin: 10px;
  }

  .segment-container .segment-button.selected {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #fe9628;
    cursor: pointer;
    border: 2px solid #24afc2;
  }

  .tab-segment {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .tab-segment .tab-button {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #24afc2;
    cursor: pointer;
    margin: 10px;
  }

  .tab-segment .tab-button.selected {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #fe9628;
    cursor: pointer;
    border: 2px solid #24afc2;
  }

.set-availability-button {
  background: #24afc2;
  border: #24afc2 6px solid;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 8px;
}

.edit-profile-button {
  background: #24afc2;
  border: #24afc2 6px solid;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 8px;
  width: 100%;
  margin: 20px auto;
  max-width: 300px;
}

.footer {
  position: relative;
  text-align: center;
  background-color: #24afc2;
  color: white;
  width: 100%;
  max-width: 100vw;
  min-height: 30px;
  padding: 5px;
  border-top: #fe9628 6px solid;
}
.footer p span {
  color: #fff;
  font-size: .8rem;
}
.footer p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
}

.desktop-margin-top-120 {
  margin-top: 120px;
}

.login-form {
  width: 500px;
}

.link {
  color: #ff7e00;
  text-decoration: underline;
  font-weight: bold;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.break-on-mobile {
  display: none;
}

.buckish-walking-desktop {
  display: inline-block;
}

.buckish-walking {
  display: none;
}

.ex-files-subheader-button {
  background: #24afc2;
  border: #24afc2 6px solid;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 8px;
}

.ex-files-subheader-button:hover {
  background: #ff7e00;
  border: #24afc2 6px solid;
}

.ex-files-subheader-button.active {
  background: #24afc2;
  border: #fe9628 6px solid;
}

.subscription-link {
  margin: 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  height: fit-content;
  padding: 10px;
  background-color: #fff8e1;
}


.sparkle {
  width: 100px;
  color: #000;
  height: auto;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  z-index: 100;
  position: relative;
}

.remove-bottom-margin {
  margin-bottom: 0;
}

.abundance-limits-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
}

.abundance-limits-map div:first-child {
  display: flex;
  flex-direction: column;
  flex-grow: 3;
  height: auto;
  padding: 20px;
}

.abundance-limits-map div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  height: auto;
  justify-content: center;
  align-items: center;
  background-color: #fff8e1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hawkins-map {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.spinning-logo {
  width: 50px;
  height: 50px;
  animation: spin 3s linear infinite;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.pretty-link {
  color: #0978d9;
  text-decoration: none;
  cursor: pointer;
}
.pretty-link:hover {
  color: #065a82;
}
.pretty-link:active {
  color: #0a9396;
}
.pretty-link:visited {
  color: #0a9396;
}
.icon {
  object-fit: contain;
}

.alert-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
} 

.alert-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-container {
    max-height: 95vh;
}

.alert-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  max-height: 70vh;
  width: 400px;
  justify-content: center;
  position: fixed;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  z-index: 1000;
}

.modal-header {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alert-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem 0 2rem;
}
.alert-modal-body p {
  font-size: 2rem;
  margin: 0 auto;
  margin-bottom: 20px;
}

.current-availability-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.current-availability-list li {
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}

.modal-close-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.alert-modal-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.alert-modal-body-close-button {
  /* fe9628 */
  background: #24afc2;
  border: #fe9628 6px solid;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  margin: 2rem auto;
}
.gratitude-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.gratitude-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.gratitude-button-textual {
  display: block;
}
.gratitude-button-visual {
  display: none;
}
.love-map-image {
  width: 100%;
  height: auto;
  max-width: 300px; 
}
.buckish-about-h1 {
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 20px;
}
.sinhala-english-articles {
  display: none;
}

.contributor-form {
  width: 90%;
  height: auto;
}

.contributor-form label {
  font-size: 26px;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #ff7e00;
}

.contributor-form input {
  font-size: 30px;
  background-color: #fff8e1;
  border: 2px solid #24afc2;
  height: 30px;
  color: #24afc2;
}

.contributor-form #amount {
  color: #14d527;
  font-size: 30px;
}

.social-links-input {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
}

.contributor-form {
  background: #fff;
  border: 2px solid #24afc2;
  color: #ff7e00;
  font-size: 40px;
}

.admin-title {
  text-align: center;
  font-size: 36px;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  color: #555;
  margin-top: 20px;
}

.admin-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 20px;
}

.admin-actions button {
  background: #fff;
  border: 2px solid #24afc2;
  color: #ff7e00;
  font-size: 40px;
}

.manage-applicants-action {
  display: flex;
  background-color: #fff;
  border-color: #24afc2;
  color: #ff7e00;
  font-size: 18px;
  margin: 10px;
}

.applicant-item {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  transition: background-color 0.3s;
}

.applicant-item:hover {
  background-color: #f0f0f0;
}

.outer-flex {
  display: flex;
  flex-direction: column;
}

.inner-flex {
  display: flex;
  margin: 0 auto;
}

.inner-flex .contributor-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  min-width: 250px;
}

.inner-flex .contributor-form * {
  display: flex;
  flex-direction: column;
}

.center-image {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.center-image img {
  position: relative;
  display: flex;
  margin: 0 auto;
}

.been-ghosted-title {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 10px;
  padding-bottom: 5px;
}

.survey-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.survey-heading span {
  font-size: 32px;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
  text-align: center;
}

.survey-container label {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: lighter;
  font-family: 'lucky', Arial, Helvetica, sans-serif;
}

.survey-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.survey-option {
  display: flex;
  background-color: #24afc2;
  color: #fdf6e3;
  font-size: 20px;
  margin: 10px 0;
  cursor: pointer;
  width: 100%;
  text-align: center;
  height: 40px;
  border: none;
}

.survey-option label {
    display: block;
}

.survey-option.smaller {
  font-size: 14px;
}

.survey-option.selected {
  background-color: #ff7e00;
  color: #fff;
  border: 2px solid #24afc2;
}

.survey-option * {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.guide-profile-picture-editing {
    width: 280px;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 10px solid #ff7e00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    justify-self: center;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #fff;
}

 .list-needs-reply-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    width: 90%;
    margin: 0 auto;
  }

  .list-needs-reply-cards-container .needs-reply-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
  }

.select-archetype-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  width: auto;
  min-width: 300px;
  padding: 15px;
  justify-content: center;
  position: fixed;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  z-index: 100;
}

.select-archetype-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.select-archetype-modal-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.select-archetype-modal-body {
  width: 100%;
  height: 90%;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.open-stripe-dashboard-button {
    display: inline-block;
    font-size: 1rem;
    cursor: pointer;
    background: #24afc2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 10px;
    width: 100%;
    height: 40px;
    background: #24afc2;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.select-archetype-modal-body input {
  width: -webkit-fill-available;
  min-width: 280px;
}

.show-real-role-modal-button {
  display: inline-block;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 10px;
}

ion-badge.remove-social-link-button {
  font-size: 0.7rem;
  background: none;
  border: none;
  position: relative;
  align-self: baseline;
  padding: 3px;
  margin-top: -17px;
  border: 2px solid #333;
  border-radius: 50%;
  cursor: pointer;
    position: absolute;
    left: 0;
    bottom: -5px;
    padding: 5px;
    background: #fff;
    border-radius: 25%;
    border: 1px solid #999;
}

.remove-social-link-button:hover {
  transform: scale(1.2);
}

.guide-signup-phone-input {
    font-size: 22px;
    padding: 10px;
    width: 100%;
    max-width: 350px;
    text-align: left;
  }

.guide-signup-email-input {
    font-size: 22px;
    padding: 10px;
    width: 100%;
    max-width: 350px;
    text-align: center;
  }

.role-item {
  display: flex;
  align-items: center;
  padding: 5px;
  margin: 10px 0;
  border-radius: 5px;
  cursor: pointer;
  background-color: #24afc2;
}

.role-item:hover {
  background-color: #f0f8fa;
  border-color: #24afc2;
  transform: scale(1.02);
}

.role-item.selected {
  background-color: #ff7e00;
  color: #fff;
}

.in-the-real-world-button:hover {
  background: #ff7e00;
  border: #24afc2 6px solid;
}

.in-the-real-world-button.selected {
  background: #ff7e00;
  border: #24afc2 6px solid;
}

.social-media-link {
  color: #0978d9;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

.payment-record {
  font-size: 1rem;
  text-align: left;
  margin-top: 10px;
  color: #555;
}

.video-upload-label {
  display: inline-block;
  margin-top: 12px;
  max-width: 600px;
  width: 90%;
  padding: 14px 18px;
  background: linear-gradient(135deg, #24afc2, #1b8ca5);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(36, 175, 194, 0.3);
  font-family: "lucky", sans-serif;
}

.video-upload-label:hover {
  background: linear-gradient(135deg, #2fc5da, #20a2b9);
  box-shadow: 0 6px 14px rgba(36, 175, 194, 0.4);
  transform: translateY(-1px);
}

.video-upload-label:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(36, 175, 194, 0.2);
}

/* Hide the default input */
.video-upload-input {
  display: none;
}

/* Optional — focus ring if keyboard user tabs to label */
.video-upload-label:focus-within {
  outline: 2px solid #ffe28a;
  outline-offset: 3px;
}

.styled-textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #2c3e50;
  background: #fffdf7;
  border: 2px solid #dbe9eb;
  border-radius: 12px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
  resize: vertical;
  line-height: 1.5;
  white-space: pre-wrap; /* ← preserves line breaks! */
  overflow-wrap: break-word;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box; /* This includes padding and border in width calculation */
}

.styled-textarea::placeholder {
  color: #9ca8af;
}

.styled-textarea:focus {
  outline: none;
  border-color: #24afc2;
  box-shadow: 0 0 0 3px rgba(36, 175, 194, 0.2);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.note-read-status {
  display: block;
  font-size: 16px;
  color: #555;
  margin-top: 5px;
  text-align: center;
  line-height: 10px;
}

.edit-note-button {
  display: block;
  line-height: 18px;
  font-size: 14px;
  cursor: pointer;
}

.modal {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  text-align: center;
  max-height: 80vh;
  overflow-y: auto;
}

.schedule-meeting-button {
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  color: #24afc2;
  margin: 10px 0;
  padding: 10px 20px;
}

.select-specific-timezone {
    max-width: 400px;
}

.note-message-preview {
  margin: 20px auto;
  max-width: 90%;
  font-size: 14px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 80px;
  width: 300px;
  -webkit-line-clamp: 3;
}


@keyframes textGrow {
  from {
    font-size: 1.2rem;
  }
  to {
    font-size: 1.5rem;
  }
}













































/*Responsive Styles */


@media screen and (max-width: 768px) {
  .gratitude-container {
    flex-direction: column;
    align-items: center;
  }
  .gratitude-section {
    width: 100%;
  }
  .gratitude-button-textual {
    display: none;
  }
  .gratitude-button-visual {
    display: block;
  }
  .alert-modal {
    width: 90%;
    height: auto;
  }
  .hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger .bar {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .site-title {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
  }
  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
    margin-left: auto;
    margin: 0 auto;
    align-items: center;
    width: auto;
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }
  .app-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .buckish-about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .buckish-about-text-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .buckish-about-text-buttons img {
    width: 120px;
    height: 120px;
    cursor: pointer;
  }
  .main-nav.closed {
    display: none;
  }
  .main-nav.open {
    display: flex;
  }
  #about {
    flex-direction: column;
    align-items: center;
  }
  #about div {
    text-align: center;
    padding: 1rem;
    margin: 0 auto;  
  }
  #about-founder {
    flex-direction: column;
    align-items: center;
  }
  .apex-in-buckish-inner-container {
        flex-direction: column;
        align-items: center;
      }
      #about-apex-in-buckish .flex-column {
        flex-direction: column;
        align-items: center;
      }
      #about-apex-in-buckish .flex-column .written-content {
        display: flex;
        flex-direction: column;
      }
      #about-the-app {
        flex-direction: column;
        align-items: center;
      }
  .about-the-app {
        flex-direction: column;
        align-items: center;
      }
  .ghosted-explanation {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    padding: 0 30px;
  }
  .app-card {
    margin: unset;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .app-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    color: #2f3e3e;
    background-color: #fff8e1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 1rem;
    border: 1px solid #ddd;
  }
  .buckish-hotline-link {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #0978d9;
    text-decoration: underline;
    font-size: 1.7rem;
  }
  .messaging-apps-icon-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .messaging-apps-icon-container-boggler {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: space-evenly;
  }
  .messaging-icon-outer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .icon {
    object-fit: contain;
  }
  .header-logo {
    width: 40px;
    height: 40px;
  }
  .profile-pic {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin: 0 auto;
    height: auto;
  }
  .descriptor-image {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
  .desktop-margin-top-120 {
    margin-top: unset;
  }
  .mobile-remove-bottom-margin {
    margin-bottom: 0;
  }
  .abundance-limits-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  .buckish-whofor-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .buckish-whofor-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .break-on-mobile {
    display: block;
  }
  .buckish-walking-desktop {
    display: none;
  }
  .polaroid-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
  }
  .polaroid {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fffdf8;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 0.75rem 0.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .polaroid > div.profile-photo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  } 

  .polaroid > div.caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .edit-profile-outer-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: #fffdf8;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 0.75rem 0.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 900px;
    justify-content: space-around;
    align-items: center;
  }

  .main-body-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    overflow-y: scroll;
    padding-bottom: 50px;
    padding-top: 20px;
 }

  .editprofilecontainer {
    display: flex;
    flex-direction: column;
  }

  .editprofilecontainer textarea#motivation {
    width: 100%;
    margin: 0 auto;
  }

  .editprofilesection {
    width: 100%;
    max-height: unset;
  }

  .login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
  }

  .list-needs-reply-cards-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    margin: 0 auto;
  }

  .profile-links-section-profile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;    
    align-items: start;
    align-content: start;
    width: fit-content;       
    margin: 0 auto;    
  }

  .login-container img {
    width: 300px;
    height: auto;
    margin: 0 auto;
  }

  .time-slot-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .time-slot-inputs label:nth-child(2) {
    width: 100%;
    margin-left: 0;
  }

  .select-specific-timezone {
    max-width: 80vw;
  }

  .suggest-archetype-modal {
    width: 100%;
    height: 100%;
  }

}