body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0; 
}



/* Header Styles */
.headerHr {
  background-color: white;
  color: #000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.container_headHr {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: #fff; /* Optional: ensures header stands out */
}

/* Important; for height of header and alsi margin from left */
.header-wrapperHr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  margin-left: 0.5rem;
  padding: 6px 2px;
}

.header-leftHr ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  
}

.header-leftHr ul li {
  margin-right: 10px;
  position: relative;
  
}


.header-leftHr ul li a {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  text-decoration: none;
  color: #1e293b;
  font-size: 14px;
  padding: 4px 4px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: inline-block;
  font-weight: 600;
}

.header-leftHr ul li a:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* PUBLISH LISTING button specific styling */
.header-leftHr ul li a[href="#advertiseHr"] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  background: #dcfce7;
  color: #333;
  border: 1px solid #bbf7d0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.header-leftHr ul li a[href="#advertiseHr"] i {
  font-size: 12px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
}

.header-leftHr ul li a[href="#advertiseHr"] i:hover {
  background: none;
  color: inherit;
}

/* PUBLISH LISTING button hover effect */
.header-leftHr ul li a[href="#advertiseHr"]:hover {
  background: #22c55e;
  color: #ffffff;
  border-color: #16a34a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1200px) {
  .header-leftHr > ul > li:not(.menuHr):not(.limoo-button-container) {
    display: none;
  }
}

/* Services Dropdown Toggle Styling */
.services-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.services-dropdown-toggle .fa-caret-down {
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.services-dropdown-toggle.active .fa-caret-down {
  transform: rotate(180deg);
}

.header-rightHr {
  display: flex;
  align-items: center;
}

.header-rightHr i {
  color: #374151;
  margin-right: 6px;
  margin-bottom: 0;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-rightHr i:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.header-rightHr i:active {
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Special styling for heart icon */
.header-rightHr .fa-heart {
  color: #ef4444;
}

.header-rightHr .fa-heart:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
}

/* Special styling for envelope icon */
.header-rightHr .fa-envelope {
  color: #3b82f6;
}

.header-rightHr .fa-envelope:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}


.loginHr a {
  color: #1e293b;
  text-decoration: none;
  padding: 0 16px;
  margin-bottom: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.025em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 40px;
}

.loginHr a:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.loginHr a:active {
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

/* Profile container (visible after login) */
.profile-containerHr {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 6px;
  margin-right: 2px;
  margin-bottom: 0;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 40px;
  height: 40px;
}

.profile-containerHr:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.profile-containerHr:active {
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.profile-containerHr i {
  margin-right: 8px;
  color: #374151;
  transition: color 0.3s ease;
}

.profile-containerHr:hover i {
  color: #ffffff;
}

.profile-initialsHr {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.profile-containerHr:hover .profile-initialsHr {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #3b82f6;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.language-iconHr {
  position: relative;
}

.language-iconHr img {
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px;
  margin-right: 6px;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: cover;
}

.language-iconHr img:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.language-iconHr img:active {
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

@media only screen and (max-width: 1200px) {
  .language-iconHr {
    display: none;
  }
}

.arrow-downHr {
  position: absolute;
  top: 71%;
  right: 10%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

/* Language Dropdown */
.language-dropdownHr {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 1000000;
  overflow: hidden;
}

.language-dropdownHr ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.language-dropdownHr ul li {
  padding: 0;
}

.language-dropdownHr ul li a {
  text-decoration: none;
  color: #475569;
  padding: 12px 20px;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.language-dropdownHr ul li:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.language-dropdownHr ul li:hover a {
  color: #ffffff;
}

/* Service Dropdown (for larger screens) */
.service-dropdownHr {
  display: none;
  position: absolute;
  top: 22px;
  left: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  overflow: hidden;
}

.service-dropdownHr ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: block;
  width: 270px;
}

.service-dropdownHr ul li {
  padding: 0;
  margin: 0;
}

.service-dropdownHr ul li a {
  text-decoration: none;
  color: #475569;
  border: none;
  padding: 12px 20px;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.service-dropdownHr ul li:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.service-dropdownHr ul li:hover a {
  color: #ffffff;
}



/* Medium screens: menu visible, logo next to it */
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .header-wrapperHr {
    margin-left: 0.5rem;
    padding: 6px 10px;
    justify-content: flex-start; /* Align items to the left */
  }
  
  
  .header-leftHr {
    order: 1; /* Menu comes first */
    margin: 0;
  }
  
  .header-rightHr {
    order: 3; /* Right buttons come last */
    margin-left: auto; /* Push right buttons to the far right */
  }
}

@media only screen and (max-width: 768px) {
  
  /* Mobile layout: menu on left, logo next to menu */
  .header-wrapperHr {
    margin-left: 0.5rem;
    padding: 6px 10px;
    justify-content: flex-start; /* Align items to the left */
  }
  
  
  .header-leftHr {
    order: 1; /* Menu comes first */
    margin: 0;
  }
  
  .header-rightHr {
    order: 3; /* Right buttons come last */
    margin-left: auto; /* Push right buttons to the far right */
  }
}







/* Show Menu button on small screens */
@media only screen and (max-width: 1200px) {
  .menuHr {
    display: block;
  }
}

@media only screen and (min-width: 1201px) {
  .menuHr {
    display: none;
  }
}

/* Hide default menu content on small screens */
.menuHr .menu-content {
  display: none;
}

/* Modal for Mobile Menu */
.modalHr {
  display: none;
  position: fixed;
  z-index: 1000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

/* Mobile modal content with fixed header for close button */
.modal-contentHr {
  background-color: #fff;
  margin: 5% auto;
  border: 1px solid #ccc;
  width: 80%;
  max-width: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  padding-right: 25px;
  padding-left: 15px;
}

.modal-headerHr {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  z-index: 10000000;
  display: flex;
  justify-content: flex-end;
}

.modal-bodyHr {
  overflow-y: auto;
  padding: 10px;
  padding-right: 20px;
  flex: 1;
}

/* Custom scrollbar styles for modal-body */
.modal-bodyHr::-webkit-scrollbar {
  width: 12px;
}

.modal-bodyHr::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-bodyHr::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.modal-bodyHr::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Modal Close Button (for mobile menu) */
.closeHr {
  color: white;
  background-color: red;
  border: 3px solid black;
  font-size: 22px;
  font-weight: bold;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000000;

}

.closeHr:hover,
.closeHr:focus {
  background-color: blue;
  text-decoration: none;
}

/* Mobile Menu Navigation Styles */
.mobile-menu-navHr ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.mobile-menu-navHr ul li {
  margin-bottom: 0;
  padding: 0;
}

.mobile-menu-navHr ul li a {
  display: block;
  font-weight: 500;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  text-decoration: none;
  color: #475569;
  padding: 12px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin: 4px 0;
  transition: all 0.3s ease;
  font-size: 14px;
}

.mobile-menu-navHr ul li:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 8px;
  margin: 4px 0;
}

.mobile-menu-navHr ul li:hover a {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
}

/* In modal, show Services as a regular expanded section */
.mobile-menu-navHr .service-dropdownHr {
  display: block;
  position: static;
  border: none;
  box-shadow: none;
  margin-top: 10px;
}
.mobile-menu-navHr .service-dropdownHr ul {
  width: 100%;
  padding: 8px 0;
}
.mobile-menu-navHr .service-dropdownHr ul li {
  margin-bottom: 0;
  padding: 0;
}
.mobile-menu-navHr .service-dropdownHr ul li a {
  display: block;
  font-weight: 500;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  text-decoration: none;
  color: #475569;
  padding: 12px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin: 4px 0;
  transition: all 0.3s ease;
  font-size: 14px;
}
.mobile-menu-navHr .service-dropdownHr ul li:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 8px;
  margin: 4px 0;
}
.mobile-menu-navHr .service-dropdownHr ul li:hover a {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
}

/* ================= LOGIN MODAL STYLES ================= */
.login-modalHr {
  display: none;
  position: fixed;
  z-index: 10000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

/* Login modal with fixed header for close button */
.login-modal-contentHr {
  background-color: #fff;
  margin: 5px auto;
  width: 90%;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 96vh;
  padding: 10px;
}

.login-modal-headerHr {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  z-index: 1000000;
  display: flex;
  justify-content: flex-end;
}

.login-modal-bodyHr {
  overflow-y: auto;
  padding: 10px;
  flex: 1;
  position: relative;
}

.login-closeHr {
  color: white;
  background-color: red;
  border: 3px solid black;
  font-size: 22px;
  font-weight: bold;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.login-closeHr:hover,
.login-closeHr:focus {
  background-color: blue;
  text-decoration: none;
}

/* Tab navigation */
.login-tabsHr {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
.login-tabHr {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  font-weight: 600;
}
.login-tabHr.activeHr {
  border-bottom: 3px solid #007bff;
  color: #007bff;
}

/* Tab content sections */
.login-tab-contentHr {
  display: none;
}
.login-tab-contentHr.activeHr {
  display: block;
}

/* Common styling for sign in / sign up forms */
.login-formHr {
  display: flex;
  flex-direction: column;
}
.login-formHr label {
  margin: 8px 0 4px;
  font-weight: 500;
}
.login-formHr input[type="email"],
.login-formHr input[type="password"] {
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.login-formHr input[type="email"]:focus,
.login-formHr input[type="password"]:focus {
  border-color: #007bff;
}

/* Social login buttons */
.social-loginsHr {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.social-loginsHr button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 8px;
  margin-bottom: 10px;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s, opacity 0.2s ease-in-out;
}
.social-loginsHr button:hover {
  background-color: #f1f1f1;
}
.social-loginsHr img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  transition: opacity 0.2s ease-in-out;
}

/* Sign in button (blue) */
.btn-signinHr,
.btn-submitHr {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}
.btn-signinHr:hover,
.btn-submitHr:hover {
  background-color: #0056b3;
}

.forgot-passwordHr {
  margin-top: 10px;
  text-align: right;
  font-size: 14px;
}
.forgot-passwordHr a {
  color: #007bff;
  text-decoration: none;
}
.forgot-passwordHr a:hover {
  text-decoration: underline;
}

/* Password requirements */
.password-requirementsHr {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.4;
}
.password-requirementsHr li {
  margin-left: 20px;
  list-style: disc;
}

.termsHr {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
  text-align: center;
}
.termsHr a {
  color: #007bff;
  text-decoration: none;
}
.termsHr a:hover {
  text-decoration: underline;
}

/* ================= PROFILE MODAL (AFTER LOGIN) ================= */
.profile-modalHr {
  display: none;
  position: fixed;
  z-index: 400000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

/* Profile modal with fixed header for close button */
.profile-modal-contentHr {
  background-color: #fff;
  margin: 2% auto;
  width: 80%;
  max-width: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 95vh;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}
.profile-modal-headerHr {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  z-index: 1000000;
  display: flex;
  justify-content: flex-end;
}
.profile-modal-bodyHr {
  overflow-y: auto;
  padding: 20px;
  flex: 1;
}

.profile-modal-bodyHr h2 {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #007bff;
}

/* Profile Photo Section Styles */
.profile-photo-sectionHr {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.profile-photo-containerHr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.profile-photo-displayHr {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
  overflow: hidden;
  position: relative;
}

.profile-photo-displayHr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-photo-placeholderHr {
  font-size: 24px;
  color: #fff;
}

.profile-photo-actionsHr {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.profile-photo-btnHr {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.profile-photo-btnHr:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.profile-photo-btnHr:active {
  transform: translateY(0);
}

.profile-photo-removeHr {
  background: linear-gradient(135deg, #dc3545, #c82333);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.profile-photo-removeHr:hover {
  background: linear-gradient(135deg, #c82333, #a71e2a);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.profile-photo-btnHr i {
  font-size: 14px;
}

/* Settings Page Styles - Full Page Layout (Like Messaging) */
.settings-pageHr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  z-index: 10000;
  display: none;
  overflow: hidden;
  animation: slideInRight 0.3s ease;
  padding-top: 20px;
}

.settings-pageHr.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.settings-headerHr {
  background: white;
  color: #333;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10001;
  height: 40px;
  overflow: visible;
  border-bottom: 1px solid #e9ecef;
}

.settings-header-leftHr {
  display: flex;
  align-items: center;
  gap: 15px;
}

.settings-back-btnHr {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #333;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.settings-back-btnHr:hover {
  background: #e9ecef;
  transform: scale(1.1);
}

.settings-headerHr h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.settings-header-rightHr {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10002;
  height: 100%;
  padding-right: 10px;
  min-width: 120px;
  justify-content: flex-end;
}

.settings-user-infoHr {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 500;
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.settings-close-btnHr {
  background: #dc3545 !important;
  border: 2px solid white !important;
  color: white !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 10% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4) !important;
  z-index: 10002 !important;
  position: relative !important;
  margin-left: 10px !important;
  flex-shrink: 0 !important;
  pointer-events: auto !important;
  top: 60px !important;

}

.settings-close-btnHr:hover {
  background: #c82333;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.settings-close-btnHr:active {
  transform: scale(0.95);
}

.settings-contentHr {
  height: calc(100vh - 40px);
  overflow-y: auto;
  background: #f8f9fa;
  padding: 0;
}

.settings-mainHr {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.settings-sectionHr {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

/* Removed the top purple line */

.settings-sectionHr:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.settings-sectionHr h3 {
  margin: 0 0 25px 0;
  color: #2d3748;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  position: relative;
}

/* Removed the bottom purple line under titles */

.settings-sectionHr h3 i {
  color: #667eea;
  font-size: 20px;
}

.settings-formHr {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-groupHr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.form-groupHr label {
  font-weight: 600;
  color: #4a5568;
  font-size: 15px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-groupHr input {
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f7fafc;
  color: #2d3748;
  font-weight: 500;
}

.form-groupHr input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.form-groupHr input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.settings-btnHr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.settings-btnHr::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.settings-btnHr:hover::before {
  left: 100%;
}

.settings-saveHr {
  background: linear-gradient(135deg, blue 0%, rgb(0, 14, 138) 100%);
  color: white;
  border: 2px solid blue;
  box-shadow: 0 8px 25px rgba(0, 0, 255, 0.3);
}

.settings-saveHr:hover {
  background: linear-gradient(135deg, rgb(0, 14, 138) 0%, blue 100%);
  box-shadow: 0 12px 35px rgba(0, 0, 255, 0.4);
}

.settings-deleteHr {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.settings-deleteHr:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

/* Toggle Switch Styles - Modern */
.notification-optionHr {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toggle-labelHr {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  margin-bottom: 15px;
}

.toggle-labelHr input[type="checkbox"] {
  display: none;
}

.toggle-sliderHr {
  position: relative;
  width: 60px;
  height: 30px;
  background: #cbd5e0;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-sliderHr:before {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-labelHr input[type="checkbox"]:checked + .toggle-sliderHr {
  background: linear-gradient(135deg, blue, rgb(0, 14, 138));
}

.toggle-labelHr input[type="checkbox"]:checked + .toggle-sliderHr:before {
  transform: translateX(30px);
}

.toggle-textHr {
  font-weight: 600;
  color: #2d3748;
  font-size: 17px;
}

.notification-descHr {
  color: #718096;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* Danger Zone Styles - Modern */
.settings-dangerHr {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  border: 2px solid #feb2b2;
  position: relative;
}

.settings-dangerHr::before {
  background: linear-gradient(90deg, #ff6b6b, #ee5a52) !important;
}

.settings-dangerHr h3 {
  color: #c53030;
  border-bottom-color: #feb2b2;
}

.settings-dangerHr h3 i {
  color: #c53030;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.danger-warningHr {
  background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
  border: 1px solid #fc8181;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.danger-warningHr p {
  margin: 0;
  color: #c53030;
  font-size: 15px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .settings-mainHr {
    padding: 15px;
  }
  
  .settings-headerHr {
    padding: 12px 15px;
  }
  
  .settings-headerHr h2 {
    font-size: 18px;
    gap: 8px;
  }
  
  .settings-back-btnHr {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .settings-close-btnHr {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  
  .settings-sectionHr {
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  
  .settings-sectionHr h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .settings-btnHr {
    width: 100%;
    align-self: stretch;
    padding: 15px 20px;
    font-size: 15px;
  }
  
  .form-groupHr input {
    padding: 15px 12px;
    font-size: 15px;
  }
  
  .toggle-sliderHr {
    width: 50px;
    height: 26px;
  }
  
  .toggle-sliderHr:before {
    width: 22px;
    height: 22px;
  }
  
  .toggle-labelHr input[type="checkbox"]:checked + .toggle-sliderHr:before {
    transform: translateX(24px);
  }
}

@media (max-width: 480px) {
  .settings-mainHr {
    padding: 10px;
  }
  
  .settings-headerHr {
    padding: 10px 12px;
  }
  
  .settings-headerHr h2 {
    font-size: 16px;
  }
  
  .settings-back-btnHr {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .settings-close-btnHr {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  
  .settings-sectionHr {
    padding: 15px 12px;
    margin-bottom: 12px;
  }
  
  .settings-sectionHr h3 {
    font-size: 16px;
  }
  
  .form-groupHr label {
    font-size: 13px;
  }
  
  .form-groupHr input {
    padding: 12px 10px;
    font-size: 14px;
  }
}

/* Settings Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.profile-closeHr {
  color: white;
  background-color: red;
  border: 2px solid black;
  font-size: 24px;
  font-weight: bold;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.profile-closeHr:hover,
.profile-closeHr:focus {
  color: white;
  text-decoration: none;
}

.profile-linksHr {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.profile-sectionHr {
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.profile-sectionHr:last-child {
  border-bottom: none;
}

.profile-sectionHr:hover {
  background-color: #f8f9fa;
}

.profile-linkHr {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.profile-linkHr:hover {
  color: #007bff;
  background-color: #f8f9fa;
  text-decoration: none;
}

.profile-iconHr {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  color: #666;
  font-size: 18px;
  transition: color 0.3s ease;
}

.profile-linkHr:hover .profile-iconHr {
  color: #007bff;
}

.profile-signoutHr {
  border-top: 1px solid #e0e0e0;
  margin-top: 0;
}

.profile-signoutHr .profile-linkHr {
  color: #dc3545;
}

.profile-signoutHr .profile-iconHr {
  color: #dc3545;
}

.profile-signoutHr:hover .profile-linkHr {
  color: #c82333;
  background-color: #f8d7da;
}

.profile-signoutHr:hover .profile-iconHr {
  color: #c82333;
}

/* ========== MODAL WIDTH 100% FOR MOBILE ========== */
@media only screen and (max-width: 600px) {
  .modal-contentHr,
  .login-modal-contentHr,
  .profile-modal-contentHr {
    background-color: white;
    margin: 1px auto;
    padding-top: 0;
    padding-bottom: 15px;  
    border: 1px solid #888 !important;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
  }
}

.messaging-containerHr {
  position: fixed;
  top: 80px;
  right: 30px;
  width: 350px;
  max-width: 95vw;
  height: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
}
.messaging-headerHr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f5f6fa;
  border-bottom: 1px solid #e0e0e0;
}
.messaging-titleHr {
  font-weight: 600;
  font-size: 1.1rem;
}
.messaging-closeHr {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.messaging-listHr {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #fafbfc;
}
.message-itemHr {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.message-profileHr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid #e0e0e0;
}
.message-contentHr {
  background: #f1f3f6;
  border-radius: 10px;
  padding: 10px 14px;
  max-width: 220px;
}
.message-senderHr {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.message-textHr {
  font-size: 0.93rem;
  color: #333;
}
.messaging-inputHr {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid #e0e0e0;
  background: #f5f6fa;
}
.messaging-text-inputHr {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 1rem;
  outline: none;
  margin-right: 8px;
}
.messaging-attachHr, .messaging-sendHr {
  background: none;
  border: none;
  font-size: 1.2rem;
  margin-left: 4px;
  cursor: pointer;
  color: #4a90e2;
  transition: color 0.2s;
}
.messaging-attachHr:hover, .messaging-sendHr:hover {
  color: #357ab8;
}

/* Password Toggle Styles */
.password-input-containerHr {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-input-containerHr input[type="password"],
.password-input-containerHr input[type="text"] {
  width: 100%;
  padding: 10px;
  padding-right: 45px;
  margin-bottom: 5px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.password-input-containerHr input[type="password"]:focus,
.password-input-containerHr input[type="text"]:focus {
  border-color: #007bff;
}

.password-toggleHr {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  font-size: 16px;
  transition: color 0.3s ease;
  z-index: 10;
  background: none;
  border: none;
  padding: 5px;
  pointer-events: auto;
}

.password-toggleHr:hover {
  color: #333;
}

.password-toggleHr.fa-eye-slash {
  color: #4a90e2;
}

.password-toggleHr.fa-eye-slash:hover {
  color: #357ab8;
}

/* Settings page password input styling */
.settings-sectionHr .password-input-containerHr input[type="password"],
.settings-sectionHr .password-input-containerHr input[type="text"] {
  padding: 15px 20px;
  padding-right: 45px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f7fafc;
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 0;
}

.settings-sectionHr .password-input-containerHr input[type="password"]:focus,
.settings-sectionHr .password-input-containerHr input[type="text"]:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

/* Header Profile Photo Styles */
.profile-photo-headerHr {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.profile-photo-headerHr:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Settings Message Styles */
.settings-messageHr {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 10002;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: slideInRight 0.3s ease;
}

.settings-message-successHr {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.settings-message-errorHr {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

.settings-message-infoHr {
  background: linear-gradient(135deg, #17a2b8, #138496);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}/* Authentication Styles for Header Login Modal */

/* Tab Navigation */
.tab-navigation {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: #667eea;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #667eea;
    border-radius: 1px;
}

.tab-btn:hover {
    color: #667eea;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Social Login */
.social-login {
    margin-bottom: 15px;
}

.social-btn {
    width: 100%;
    padding: 15px;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.social-btn img {
    width: 24px;
    height: 24px;
}

/* Auth Form */
.auth-form {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

/* Remember Me Checkbox Styles */
.remember-me-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: inline-block;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 16px;
    z-index: 1;
}

.form-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.form-group input.success {
    border-color: #28a745;
    background: #f8fff9;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #667eea;
}

.password-requirements {
    margin-top: 10px;
    padding: 15px 15px 2px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e1e5e9;
}

.password-requirements p {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
}

.password-requirements li {
    color: #999;
    font-size: 13px;
    margin-bottom: 1px;
    padding-left: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.password-requirements li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #ccc;
    font-size: 12px;
}

.password-requirements li.valid {
    color: #28a745;
}

.password-requirements li.valid::before {
    content: '●';
    color: #28a745;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, blue 0%, rgb(0, 14, 138) 100%);
    color: white;
    border: 2px solid blue;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: rgb(0, 14, 138);
}

.message {
    margin: 0 0 20px 0;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    animation: slideIn 0.3s ease;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
    font-size: 15px;
}

.message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
    font-size: 15px;
    font-weight: 700;
}

.message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Email verification notice */
.email-verification-notice {
    margin-top: 15px;
    padding: 10px 15px;
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    color: #1976d2;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-verification-notice i {
    color: #2196f3;
    font-size: 16px;
}

/* Limoo Button Styles - matching dashboard/application form */
.limoo-button {
  background: white !important;
  border: 1px solid #ddd !important;
  color: #333 !important;
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 8px !important;
  width: 80px !important;
  height: 35px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.limoo-button:hover {
  background: #f0f0f0 !important;
  border-color: #bbb !important;
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3) !important;
}

/* Limoo Text Wrapper - handles letter spacing like homepage */
.limoo-text {
  letter-spacing: -0.5px !important;
  display: inline-block !important;
  font-size: 26px !important;
}

/* Limoo Letter Colors - matching homepage */
.limoo-l, .limoo-i {
  color: #22C55E !important; /* Green */
}

.limoo-m {
  color: #3b82f6 !important; /* Blue */
}

.limoo-oo {
  color: #ef4444 !important; /* Red */
}

/* Limoo Button Container in Header */
.limoo-button-container {
  margin-right: 10px !important;
  list-style: none !important;
}

.limoo-button-container .limoo-button {
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}
