@charset "UTF-8";
/**
 * Animation mixin.
 */
/**
 * Keyframes mixin.
 */
/**
* Absolute position the element at the top left corner
**/
/**
* Defines the maximum width and height
**/
/**
 * Mixin styling a placeholder.
 **/
/**
 * Mixin styling a slider track for different browsers.
 **/
/**
 * Mixin styling a slider thumb for different browsers.
 **/
/**
 * Creates a semi-transparent background with the given color and alpha
 * (opacity) value.
 */
/**
 * Avatar status badge mixin
 */
/**
 * Responsive breakpoint mixins
 */
/**
 * Accessibility mixins
 */
/**
 * Animation and motion mixins
 */
/**
 * High contrast mode support
 */
/**
 * Button Design System
 * Based on Sangoma design specifications
 */
.sng-switch {
  display: flex;
  align-items: center;
}
.sng-switch__loading {
  margin-right: 8px;
  margin-bottom: 1px;
}
.sng-switch__loading .spinner {
  width: 16px;
  height: 16px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}
.sng-switch__loading .dot1, .sng-switch__loading .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #244C91;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}
.sng-switch__loading .dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.sng-switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.sng-switch label {
  cursor: pointer;
  text-indent: -9999px;
  width: 36px;
  height: 22px;
  background: #99A0A6;
  display: block;
  border-radius: 100px;
  position: relative;
}
.sng-switch label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-radius: 50px;
  transition: 0.3s;
}
.sng-switch label.load {
  background: #aaa !important;
}
.sng-switch input:checked + label {
  background: #244C91;
}
.sng-switch input:checked + label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
.sng-switch label:active:after {
  width: 22px;
}
.sng-switch:hover .tooltip-text {
  display: block !important;
}
.sng-switch .tooltip-text {
  display: none;
  width: 147px;
  background-color: #e6e4e4;
  color: #0e0e0e;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  font-size: 11px;
  position: absolute;
  z-index: 1;
  top: 12rem;
  left: 61%;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none;
}

#react {
  height: 100%;
}
#react > div {
  height: 100%;
  background: #FFFFFF;
}

#root {
  height: 100%;
}
#root > div {
  height: 100%;
  background: transparent;
}

#LandingPage {
  height: 100%;
  font-size: 14px;
  color: #001221;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: #F2F2F3;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#LandingPage::-webkit-scrollbar {
  width: 0;
  height: 0;
}
#LandingPage * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}
#LandingPage a {
  text-decoration: none;
}
#LandingPage .container {
  width: 1400px;
  margin: auto;
  padding: 0 16px;
}
@media (max-width: 1440px) {
  #LandingPage .container {
    max-width: 1366px;
    width: auto;
    margin: 40px auto;
  }
}
#LandingPage h1 {
  font-size: 48px;
  line-height: 1;
  color: #244C91;
  margin-bottom: 16px;
  margin-top: 0;
}
@media (max-width: 1023px) {
  #LandingPage h1 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  #LandingPage h1 {
    line-height: 1.1;
    margin: 12px 0;
  }
}
#LandingPage h2 {
  font-size: 30px;
  line-height: 1;
  color: #9c328c;
  margin-top: 20px;
}
@media (max-width: 1140px) {
  #LandingPage h2 {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  #LandingPage h2 {
    text-align: center;
  }
}
#LandingPage button,
#LandingPage input {
  font-family: "Open Sans", sans-serif;
}
#LandingPage input {
  text-decoration: none;
}

#LandingPage header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  z-index: 2;
  transition: 0.3s ease;
}
@media (max-width: 1023px) {
  #LandingPage header {
    position: relative;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  #LandingPage header {
    background: rgba(244, 246, 247, 0.97);
    box-shadow: 0px 0px 12px 0px rgba(0, 18, 33, 0.2);
    justify-content: flex-start;
    position: fixed;
  }
}
#LandingPage header .burger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
#LandingPage header .burger-icon img {
  width: 28px;
}
#LandingPage header .burger-icon img.close-icon {
  width: 16px;
}
@media (min-width: 769px) {
  #LandingPage header .burger-icon {
    display: none;
  }
}
@media (max-width: 768px) {
  #LandingPage header {
    padding: 12px 20px;
    justify-content: space-between;
  }
}
#LandingPage header .sangoma-meet-logo {
  flex-shrink: 0;
  width: 114px;
  height: 58px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#LandingPage header .sangoma-meet-logo--white {
  width: 223px;
  height: 129px;
  position: relative;
  top: 30px;
  left: 30px;
  opacity: 1;
  background: url(../assets/logos/headerLogo.png) no-repeat;
  background-size: cover;
}
@media (max-width: 1023px) {
  #LandingPage header .sangoma-meet-logo {
    display: none;
  }
}
#LandingPage header .main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
#LandingPage header .main-nav li {
  position: relative;
}
#LandingPage header .main-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  margin: 0 8px;
  border-radius: 4px;
  font: normal 700 12px/1.4 "Poppins", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
#LandingPage header .main-nav__item:hover {
  background: rgba(29, 62, 119, 0.04);
  border-radius: 4px;
}
#LandingPage header .main-nav__item img ~ span {
  margin-left: 8px;
}
#LandingPage header .main-nav__item img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  #LandingPage header .main-nav__item img {
    width: 22px;
    height: 22px;
  }
}
#LandingPage header .main-nav__item--background {
  background: rgba(244, 246, 247, 0.97);
}
@media (max-width: 768px) {
  #LandingPage header .main-nav__item--background {
    background: none;
  }
}
#LandingPage header .main-nav__item--loading .main-nav__item__authInfo {
  visibility: hidden;
}
#LandingPage header .main-nav__item--login {
  border: 1px solid #B6E1F8;
  border-radius: 4px;
  transition: background 0.3s ease;
}
#LandingPage header .main-nav__item--login:hover {
  background: #FFFFFF;
}
@media (max-width: 768px) {
  #LandingPage header .main-nav__item--login {
    border: none;
    border-radius: 0;
  }
}
#LandingPage header .main-nav__item__spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
#LandingPage header .main-nav__item__spinner .spinner-dots {
  position: relative;
  width: 16px;
  height: 16px;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
}
#LandingPage header .main-nav__item__spinner .spinner-dots .dot1,
#LandingPage header .main-nav__item__spinner .spinner-dots .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #244C91;
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}
#LandingPage header .main-nav__item__spinner .spinner-dots .dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}
#LandingPage header .main-nav__item__authInfo {
  display: flex;
  align-items: center;
}
#LandingPage header .main-nav__item__authInfo__loginIcon {
  width: 15px !important;
  height: 15px !important;
}
#LandingPage header .main-nav__item__authInfo__loginLabel {
  margin-left: 0.6rem;
}
#LandingPage header .main-nav__item__authInfo__loginLabel span {
  font-weight: 400;
}
#LandingPage header .main-nav__item__authInfo__userIcon {
  width: 15px !important;
  height: 15px !important;
}
#LandingPage header .main-nav__item__authInfo__userName {
  margin: 0 0.6rem;
  max-width: 10rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#LandingPage header .main-nav__item__authInfo__chevron {
  width: 12px !important;
  height: 12px !important;
  transition: transform 0.3s ease;
}
#LandingPage header .main-nav__item__authInfo__chevron--open {
  transform: rotate(180deg);
}
#LandingPage header .main-nav--home .main-nav__item {
  color: #001221;
  transition: color 0.3s ease;
}
#LandingPage header .main-nav--download {
  position: relative;
  bottom: 35px;
}
#LandingPage header .main-nav--download .main-nav__item {
  color: #001221;
  transition: opacity 0.3s ease;
}
#LandingPage header .main-nav--download .main-nav__item:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  #LandingPage header .main-nav--download .main-nav__item {
    color: #001221;
  }
  #LandingPage header .main-nav--download .main-nav__item img {
    filter: unset;
  }
}
#LandingPage header .main-nav--download .main-nav__item--login:hover {
  background: rgba(255, 255, 255, 0.2);
}
#LandingPage header .main-nav--download .main-nav__item__spinner .spinner-dots .dot1,
#LandingPage header .main-nav--download .main-nav__item__spinner .spinner-dots .dot2 {
  background-color: #FFFFFF;
}
@media (max-width: 1023px) {
  #LandingPage header .main-nav ul {
    justify-content: center;
  }
}
@media (max-width: 680px) {
  #LandingPage header .main-nav {
    flex-grow: 1;
  }
  #LandingPage header .main-nav ul {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  #LandingPage header .main-nav {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: flex-start;
    background: #FFFFFF;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    transition-delay: 0.4;
    z-index: 1;
  }
  #LandingPage header .main-nav.open {
    top: 66px;
    opacity: 1;
    visibility: visible;
  }
  #LandingPage header .main-nav ul {
    flex-direction: column;
    padding: 0;
  }
  #LandingPage header .main-nav ul li {
    width: 100%;
  }
  #LandingPage header .main-nav ul li .main-nav__item {
    padding: 28px;
  }
}
#LandingPage header .join-meeting-menu {
  position: absolute;
  top: 26px;
  width: 260px;
  left: 50%;
  margin-left: -130px;
  padding: 16px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 18, 33, 0.2);
  border-radius: 4px;
  z-index: 10;
}
@media (max-width: 768px) {
  #LandingPage header .join-meeting-menu {
    top: 46px;
    left: 10px;
    right: 10px;
    width: unset;
    margin-left: unset;
  }
}
#LandingPage header .join-meeting-menu label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
#LandingPage header .join-meeting-menu input {
  width: 100%;
  padding: 8px;
  border: 1px solid #E5E6E8;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: border 0.3s ease;
}
#LandingPage header .join-meeting-menu input.has-error {
  border: 1px solid #C70816;
}
#LandingPage header .join-meeting-menu input:focus {
  border: 1px solid #244C91;
}
#LandingPage header .join-meeting-menu input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #33414D;
}
#LandingPage header .join-meeting-menu input::-moz-placeholder {
  /* Firefox 19+ */
  color: #33414D;
}
#LandingPage header .join-meeting-menu input:-ms-input-placeholder {
  /* IE 10+ */
  color: #33414D;
}
#LandingPage header .join-meeting-menu input:-moz-placeholder {
  /* Firefox 18- */
  color: #33414D;
}
#LandingPage header .join-meeting-menu p {
  font-size: 12px;
  margin-bottom: 12px;
  color: #33414D;
}
#LandingPage header .join-meeting-menu p.validation-error-text {
  color: #C70816;
  font-weight: 700;
}
#LandingPage header .join-meeting-menu__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
#LandingPage header .join-meeting-menu .join-meeting__btn-cancel {
  border: none;
  background: #FFFFFF;
  color: #33414D;
  font-weight: 700;
  transition: color 0.3s ease;
}
#LandingPage header .join-meeting-menu .join-meeting__btn-cancel:hover {
  color: #001221;
}
#LandingPage header .join-meeting-menu .join-meeting__btn-join {
  padding: 8px 24px;
  border: none;
  background: #244C91;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.3s ease;
  margin-right: 20px;
}
#LandingPage header .join-meeting-menu .join-meeting__btn-join:hover {
  background: rgb(41.0718232044, 86.7071823204, 165.4281767956);
}
#LandingPage header .user-menu {
  position: absolute;
  top: 26px;
  width: 200px;
  right: 0;
  margin-left: -130px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 18, 33, 0.2);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 10;
}
@media (max-width: 768px) {
  #LandingPage header .user-menu {
    top: 46px;
    left: 10px;
    right: 10px;
    width: unset;
    margin-left: unset;
  }
}
#LandingPage header .user-menu ul {
  display: block;
}
#LandingPage header .user-menu ul li {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 36px;
  cursor: pointer;
  transition: color 0.3s ease;
}
#LandingPage header .user-menu ul li:hover {
  color: #244C91;
}
#LandingPage header .user-menu ul li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 8px;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
#LandingPage .download {
  position: relative;
  height: 100vh;
  display: flex;
  background: rgb(219, 237, 247);
  background-size: cover;
  flex-direction: column;
  color: #FFFFFF;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  #LandingPage .download {
    height: auto;
    padding: 32px;
  }
}
@media (max-width: 768px) {
  #LandingPage .download {
    height: auto;
    padding: 32px 0;
  }
}
#LandingPage .download .container {
  position: relative;
  z-index: 100;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
#LandingPage .download h1 {
  font: normal 300 44px/1.5 "Poppins", sans-serif;
  color: rgb(30, 63, 120);
}
#LandingPage .download .description {
  color: #244C91;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25px;
}
#LandingPage .download p {
  max-width: 600px;
  margin: auto;
}
#LandingPage .download__btn-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #LandingPage .download__btn-container {
    flex-direction: column;
    margin: 28px 0;
  }
}
#LandingPage .download .not-supported {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin: 16px 0;
  padding: 0 16px;
}
#LandingPage .download .not-supported p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25px;
  margin: 16px 0;
  color: rgb(36, 76, 145);
}
#LandingPage .download__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font: normal 700 16px/1.4 "Open Sans", sans-serif;
  background: rgba(0, 18, 33, 0.9);
  color: #FFFFFF;
  margin: 36px 16px;
  padding: 12px 16px;
  min-width: 280px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#LandingPage .download__btn:hover {
  background: #001221;
}
#LandingPage .download__btn__icon {
  margin-right: 8px;
}
@media (max-width: 768px) {
  #LandingPage .download__btn {
    width: 100%;
    margin: 12px 16px;
  }
}
#LandingPage .download__btn .meet-version {
  margin-left: 8px;
  opacity: 0.6;
}
#LandingPage .download .mobile-container {
  display: inline-block;
  margin: auto;
  background: rgba(127, 136, 143, 0.2);
  border-radius: 4px;
  padding: 5px 16px 16px;
}
#LandingPage .download .mobile-container p {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #192936;
}
#LandingPage .download .mobile-container__buttons a {
  margin: 8px;
}
#LandingPage .download .mobile-container__buttons a img {
  width: 120px;
}
#LandingPage .background-image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100px;
  background-size: contain;
  opacity: 0.06;
}

#LandingPage .footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 11px;
  z-index: 1;
}
@media (max-width: 1023px) {
  #LandingPage .footer {
    margin-top: 36px;
  }
}
@media (max-width: 768px) {
  #LandingPage .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
#LandingPage .footer > div:first-child {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #LandingPage .footer > div:first-child {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
#LandingPage .footer > div:last-child {
  text-align: left;
}
@media (max-width: 768px) {
  #LandingPage .footer > div:last-child {
    text-align: center;
  }
}
#LandingPage .footer p {
  margin: 0;
}
#LandingPage .footer a {
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
#LandingPage .footer a:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  #LandingPage .footer a {
    margin: 12px 0;
  }
}
#LandingPage .footer__sangoma-icon {
  padding-right: 5px;
}
#LandingPage .footer__sangoma-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.07px;
}
#LandingPage .footer__sangoma-work {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}
#LandingPage .footer__sangoma-policy {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.07px;
  color: #244C91;
}
#LandingPage .footer__sangoma-version {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #244C91;
}
#LandingPage .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#LandingPage .footer .footer-link:focus-visible,
#LandingPage .footer .footer-social-link:focus-visible {
  outline: 2px solid #9c328c;
  outline-offset: 2px;
  border-radius: 4px;
}
#LandingPage .footer .footer-link:hover, #LandingPage .footer .footer-link:focus {
  color: #158FCF;
  text-decoration: underline;
}
#LandingPage .footer .footer-social-link:hover, #LandingPage .footer .footer-social-link:focus {
  background-color: rgba(156, 50, 140, 0.1);
  border-radius: 50%;
}
#LandingPage .footer .footer-links-list,
#LandingPage .footer .footer-social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}
#LandingPage__sangoma-icon {
  margin-right: 12px;
}
#LandingPage__browser-version {
  flex-grow: 1;
  text-align: center;
  color: rgb(36, 76, 145);
  font-weight: 400;
}
@media (max-width: 768px) {
  #LandingPage__browser-version {
    margin-top: 12px;
  }
}
#LandingPage__browser-version span {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
#LandingPage__browser-version span:hover {
  opacity: 1;
}

#landingPage .sng-notification-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}
#landingPage .sng-notification-bar > div:first-child {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  min-height: 36px;
}
@media (max-width: 1023px) {
  #landingPage .sng-notification-bar > div:first-child {
    min-height: 36px;
  }
}
@media (max-width: 768px) {
  #landingPage .sng-notification-bar > div:first-child {
    min-height: 36px;
  }
}
#landingPage .sng-notification-bar__title {
  flex-grow: 1;
  position: relative;
  font-weight: 700;
  margin-left: 8px;
  line-height: 1.2;
  font-size: 13px;
}
#landingPage .sng-notification-bar__button {
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 8px;
  margin-left: 8px;
  opacity: 0.8;
}
#landingPage .sng-notification-bar__button:hover {
  opacity: 1;
  text-decoration: underline;
}
#landingPage .sng-notification-bar__close {
  width: 18px;
  height: 18px;
  padding: 4px;
  box-sizing: border-box;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
#landingPage .sng-notification-bar__close:hover {
  opacity: 1;
}
#landingPage .sng-notification-bar__details {
  box-shadow: 0px 0px 12px 0px rgba(0, 18, 33, 0.2);
  background: #FFFFFF;
  color: #001221;
  padding: 12px;
  white-space: pre;
}
#landingPage .sng-notification-bar--danger > div:first-child {
  background: #C70816;
  color: #FFFFFF;
}
#landingPage .sng-notification-bar--danger .sng-notification-bar__details {
  border-bottom: 1px solid #C70816;
}
#landingPage .sng-notification-bar--warning > div:first-child {
  background: #FDD96D;
  color: #001221;
}
#landingPage .sng-notification-bar--warning .sng-notification-bar__details {
  border-bottom: 1px solid #FBBD00;
}
#landingPage .sng-notification-bar--warning .sng-notification-bar__button {
  border-left-color: #A77E00;
}
#landingPage .sng-notification-bar--warning .sng-notification-bar__close {
  filter: brightness(0.2);
}
#landingPage .sng-notification-bar--update > div:first-child {
  background: #244C91;
  color: #FFFFFF;
}
#landingPage .sng-notification-bar--update .sng-notification-bar__details {
  border-bottom: 1px solid #244C91;
}
#landingPage .sng-notification-bar ~ header {
  top: 36px;
}
@media (max-width: 768px) {
  #landingPage .sng-notification-bar ~ header {
    top: 36px;
  }
  #landingPage .sng-notification-bar ~ header .main-nav.open {
    top: 100px;
  }
}

.meet-features__buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.meet-features__buttons .overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 18, 33, 0.6);
  z-index: 110;
}
@media (max-width: 820px) {
  .meet-features__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.meet-features__buttons .new-meet {
  width: 100%;
  flex-shrink: 0;
  font-size: 16px;
}
.meet-features__buttons .new-meet__spinner {
  position: absolute;
  right: -25px;
  top: 15px;
}
.meet-features__buttons .new-meet__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #244C91;
  border-radius: 4px;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 700;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}
.meet-features__buttons .new-meet__btn__icon {
  margin-right: 8px;
  width: 32px;
}
.meet-features__buttons .new-meet__btn:hover {
  box-shadow: 0px 0px 12px 0px rgba(0, 18, 33, 0.2);
  background: #142B53;
}
.meet-features .separator {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.meet-features .separator__line {
  width: 12px;
  height: 1px;
  background: #E5E6E8;
  flex-grow: 1;
}
.meet-features .separator__text {
  margin: 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #33414D;
}
.meet-features__calendar {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  width: 100%;
  height: 375px;
  background: #E5E6E8;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 0px 12px 0px rgba(0, 18, 33, 0.2);
  border: 1px solid #7F888F;
}
.meet-features__calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 16px;
  background: rgb(234.412244898, 235.2040816327, 236.787755102);
  border-bottom: 1px solid #7F888F;
}
.meet-features__calendar__header__title {
  display: flex;
  align-items: center;
}
.meet-features__calendar__header__title h3 {
  margin: 0 8px;
  font-weight: 700;
}
.meet-features__calendar__header__btn {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  background: fade(#FFFFFF, 70%);
  border: 1px solid #7F888F;
  border-radius: 4px;
  cursor: pointer;
  transition: border 0.3s ease;
}
.meet-features__calendar__header__btn:hover {
  border: 1px solid rgb(137.8815789474, 206.9078947368, 243.1184210526);
  background: fade(#FFFFFF, 100%);
}
.meet-features__calendar__header__btn img {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.meet-features__calendar__header__btn span {
  margin-left: 8px;
}
.meet-features__calendar__body {
  display: flex;
  flex-grow: 1;
}
.meet-features__calendar__body.empty {
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #33414D;
  text-align: center;
  background: rgb(223.587755102, 224.7959183673, 227.212244898);
}
.meet-features__calendar__body .calendar-login {
  display: block;
  margin-bottom: 12px;
  padding: 8px 12px;
  font-size: 13px;
  color: rgb(25.8563535912, 54.5856353591, 104.1436464088);
  border: 1px solid fade(#244C91, 20%);
  border-radius: 4px;
  transition: background 0.3s ease;
}
.meet-features__calendar__body .calendar-login:hover {
  background: fade(#FFFFFF, 50%);
}
.meet-features__calendar__body .calendar-signup {
  font-size: 13px;
  color: #33414D;
}
.meet-features__calendar__body .calendar-signup a {
  color: #001221;
  transition: color 0.3s ease;
}
.meet-features__calendar__body .calendar-signup a:hover {
  color: rgb(25.8563535912, 54.5856353591, 104.1436464088);
}
.meet-features__calendar__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(234.412244898, 235.2040816327, 236.787755102);
  border-top: 1px solid #7F888F;
  padding: 12px 16px;
}
@media (max-width: 600px) {
  .meet-features__calendar__footer {
    flex-direction: column;
  }
}

.sangoma-meet--dial-in-info p {
  padding-bottom: 7px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.sangoma-meet--dial-in-info a {
  padding-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-size: 14px;
}

.sangoma-meet--label-container {
  align-items: center;
  display: flex;
  padding-bottom: 5px;
}

.sangoma-meet--label {
  padding-left: 5px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.25px;
  font-size: 14px;
  line-height: 20px;
}

.sangoma-meet--tooltip {
  position: relative;
}
.sangoma-meet--tooltip:hover span {
  top: 24px;
  opacity: 1;
  visibility: visible;
}
.sangoma-meet--tooltip span {
  top: 30px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 20px;
  max-width: 300px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 18, 33, 0.2);
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  transition: 0.3s ease;
  transition-delay: 0.1s;
  width: max-content;
  max-width: 240px;
  z-index: 100;
}

.sangoma-meet--label-help-text {
  position: relative;
  display: inline-block;
  margin-left: 8px;
}
.sangoma-meet--label-help-text:hover div {
  color: #001221;
}
.sangoma-meet--label-help-text:hover span {
  top: -8px;
  opacity: 1;
  visibility: visible;
}
.sangoma-meet--label-help-text div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #33414D;
  cursor: pointer;
}
.sangoma-meet--label-help-text span {
  position: absolute;
  left: 20px;
  top: 0;
  max-width: 300px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 18, 33, 0.2);
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  transition-delay: 0.1s;
  width: max-content;
  max-width: 240px;
  z-index: 100;
}
@media (max-width: 440px) {
  .sangoma-meet--label-help-text span {
    left: unset;
    right: 20px;
  }
}

#LandingPage .download-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  border: 1px solid #244C91;
  border-radius: 50%;
  z-index: 200;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
#LandingPage .download-spinner img {
  width: 16px;
}
#LandingPage .download-spinner:hover {
  opacity: 1;
}
@media (max-width: 1366px) {
  #LandingPage .download-spinner {
    top: 82px;
  }
}

#LandingPage .isSafariWarning {
  position: relative;
  margin-top: 130px;
}
#LandingPage .isSafariWarning__body {
  position: absolute;
  bottom: 0;
  background-color: rgb(230, 211, 44);
  border-radius: 7px;
  padding: 20px;
  color: #000;
  width: 100%;
}
#LandingPage .isSafariWarning__title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
#LandingPage .isSafariWarning__title button {
  border: none;
  background: none;
  color: #000;
}
#LandingPage .isSafariWarning__container {
  margin: 20px 0 0 0;
}
#LandingPage .isSafariWarning__container p {
  margin: 0 0 20px 0;
}
#LandingPage .isSafariWarning__container .button {
  padding: 5px;
  border-radius: 4px;
  border: none;
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
  font-weight: bold;
}
#LandingPage .isSafariWarning__link {
  text-decoration: underline;
  font-weight: bold;
  color: #000;
}

.calendarRecentPanel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  min-height: 600px;
  height: auto;
  margin: 0 auto;
  gap: 15px;
  position: relative;
}
.calendarRecentPanel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #E5E6E8;
}
.calendarRecentPanel {
  font-family: inherit;
  transition: all 0.3s ease-in-out;
}
.calendarRecentPanel.transitioning {
  opacity: 0.8;
  transform: scale(0.98);
}
.calendarRecentPanel .opacity-100 {
  opacity: 1;
}
.calendarRecentPanel .opacity-60 {
  opacity: 0.6;
}
.calendarRecentPanel .calendarContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 24px;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectIcon {
  width: 128px;
  height: 128px;
  margin: 0 auto 24px;
  opacity: 0.6;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectIcon img {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectTitle {
  font-size: 20px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 16px;
  line-height: 1.3;
  white-space: pre-line;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectDescription {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-line;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectButtons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 322px;
  margin: 0 auto;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 322px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid #A3B6D7;
  border-radius: 8px;
  background: #ffffff;
  color: #001221;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectButton:hover:not(:disabled) {
  border-color: #A3B6D7;
  background: #E8EDF5;
  box-shadow: 0 2px 8px rgba(163, 182, 215, 0.2);
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f8f9fa;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectButton .buttonIcon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectButton.googleButton:hover:not(:disabled) {
  border-color: #A3B6D7;
  background: #E8EDF5;
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectButton.microsoftButton:hover:not(:disabled) {
  border-color: #A3B6D7;
  background: #E8EDF5;
}
@media (max-width: 480px) {
  .calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectButton {
    max-width: 100%;
    font-size: 14px;
  }
}
.calendarRecentPanel .calendarContent .calendarConnectContainer .calendarConnectError {
  color: #dc3545;
  font-size: 12px;
  margin-top: 16px;
  padding: 8px 12px;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
}
.calendarRecentPanel .calendarList {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 700px;
}
.calendarRecentPanel .calendarListHeader {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px;
  border-bottom: 1px solid #e9ecef;
  background: #ffffff;
}
.calendarRecentPanel .headerActions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.calendarRecentPanel .calendarAccount {
  display: flex;
  align-items: center;
  gap: 8px;
}
.calendarRecentPanel .accountEmail {
  font-size: 12px;
  color: #6c757d;
}
.calendarRecentPanel .providerIcon {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}
.calendarRecentPanel .calendarItems {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  background: white;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 400px;
  max-height: 70vh;
  gap: 16px;
}
.calendarRecentPanel .calendarItems::-webkit-scrollbar {
  width: 0px;
}
.calendarRecentPanel .calendarItems::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.calendarRecentPanel .calendarItems::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.calendarRecentPanel .calendarItems::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.calendarRecentPanel .calendarItem:hover .itemActions {
  display: flex;
  transition: 4s;
}
.calendarRecentPanel .calendarDayGroup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calendarRecentPanel .dateEventBox {
  display: flex;
}
.calendarRecentPanel .dateEventBox .calendarItem {
  width: -webkit-fill-available;
}
.calendarRecentPanel .calendarItem {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: none;
  border-left: 4px solid transparent;
  padding: 12px 16px;
  transition: all 0.2s ease;
  border-radius: 8px;
}
.calendarRecentPanel .calendarItem:hover {
  background: #f8f9fa;
}
.calendarRecentPanel .calendarItem.bg-white {
  background: white;
  border: 1px solid #E5E6E8;
}
.calendarRecentPanel .calendarItem.bg-white:hover {
  background: #f8f9fa;
}
.calendarRecentPanel .calendarItem.bg-yellow {
  background: #FEF6DB;
}
.calendarRecentPanel .calendarItem.bg-yellow:hover {
  background: #fff8e1;
}
.calendarRecentPanel .calendarItem.bg-green {
  background: #DCF1E0;
}
.calendarRecentPanel .calendarItem.bg-green:hover {
  background: #e8f5e8;
}
.calendarRecentPanel .calendarItem.bg-gray {
  background: #F2F2F3;
}
.calendarRecentPanel .calendarItem.bg-gray:hover {
  background: #e9ecef;
}
.calendarRecentPanel .dateEventBox.withDate .dateBlock {
  opacity: 1;
}
.calendarRecentPanel .dateEventBox:not(.withDate) .dateBlock {
  opacity: 0;
  pointer-events: none;
}
.calendarRecentPanel .calendarItem.withDate .dateBlock {
  opacity: 1;
}
.calendarRecentPanel .calendarItem:not(.withDate) .dateBlock {
  opacity: 0;
  pointer-events: none;
}
.calendarRecentPanel .dateBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
}
.calendarRecentPanel .dateText {
  font-size: 12px;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.calendarRecentPanel .dateNumber {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  line-height: 1;
}
.calendarRecentPanel .itemMain {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: start;
  min-width: 0;
}
.calendarRecentPanel .itemTitle {
  font-size: 15px;
  font-weight: 600;
  color: #212529;
  line-height: 1.3;
  margin-bottom: 2px;
}
.calendarRecentPanel .itemTime {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}
.calendarRecentPanel .locationLink {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.calendarRecentPanel .locationLink:hover {
  text-decoration: underline;
}
.calendarRecentPanel .itemLink {
  font-size: 12px;
  color: #0d6efd;
  word-break: break-all;
  margin-top: 2px;
}
.calendarRecentPanel .itemActions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  transition: 4s;
}
.calendarRecentPanel .itemAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4A6EAD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  flex-shrink: 0;
  margin-right: -8px;
  position: relative;
  border: 2px solid #ffffff;
  overflow: hidden;
}
.calendarRecentPanel .itemAvatar:nth-child(1) {
  background: #244C91;
  z-index: 3;
}
.calendarRecentPanel .itemAvatar:nth-child(2) {
  background: #9c328c;
  z-index: 2;
}
.calendarRecentPanel .itemAvatar:nth-child(3) {
  background: #183260;
  z-index: 1;
}
.calendarRecentPanel .itemAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.calendarRecentPanel .avatarGroup {
  display: flex;
  align-items: center;
}
.calendarRecentPanel .itemAvatar:first-child {
  margin-left: 0;
}
.calendarRecentPanel .itemAvatar.more {
  color: #333;
  z-index: 0;
  background: none;
  width: auto;
  border: none;
  margin: 0 16px;
}
.calendarRecentPanel .itemAvatar.more .more-text {
  display: inline;
}
.calendarRecentPanel .itemAvatar.more .plus-icon {
  transition: opacity 0.2s ease;
}
.calendarRecentPanel .calendarItem:hover .itemAvatar.more .plus-icon {
  opacity: 0;
  width: 0;
  overflow: hidden;
}
.calendarRecentPanel .iconButton {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.calendarRecentPanel .iconButton:hover {
  border-color: #cbd3da;
  background: #e9ecef;
  transform: translateY(-1px);
}
.calendarRecentPanel .iconButton:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(47%) saturate(1234%) hue-rotate(195deg) brightness(95%) contrast(89%);
  opacity: 1;
}
.calendarRecentPanel .iconButton img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.calendarRecentPanel .refreshIcon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("../../assets/icons/landing-page/load-icon.svg") center/contain no-repeat;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.4));
}
.calendarRecentPanel .iconButton.loading .refreshIcon {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.calendarRecentPanel .disconnectIcon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("../../assets/icons/landing-page/logout-icon.svg") center/contain no-repeat;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.4));
}
.calendarRecentPanel .googleIcon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("../../assets/icons/landing-page/gcalendar_icon.svg") center/contain no-repeat;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.4));
}
.calendarRecentPanel .outlookIcon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url("../../assets/icons/landing-page/outlook_icon.svg") center/contain no-repeat;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.4));
}
.calendarRecentPanel .emptyMessage {
  padding: 24px;
  color: #6c757d;
  font-size: 14px;
  text-align: center;
  background: white;
  border-radius: 12px;
  border: 1px solid #f1f3f5;
}

@media (min-width: 1201px) {
  .calendarRecentPanel {
    max-width: 1200px;
    min-width: 100%;
    min-height: 700px;
  }
  .calendarRecentPanel .calendarItems {
    max-height: 75vh;
    min-height: 500px;
  }
  .calendarRecentPanel .calendarItem {
    padding: 18px;
  }
  .calendarRecentPanel .calendarItem .itemTitle {
    font-size: 16px;
  }
  .calendarRecentPanel .calendarItem .itemTime {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .calendarRecentPanel {
    max-width: 100%;
    height: 500px;
    margin: 0;
  }
  .calendarRecentPanel .calendarItems {
    max-height: 380px;
  }
  .calendarRecentPanel .calendarItem {
    padding: 12px;
    gap: 12px;
  }
  .calendarRecentPanel .calendarItem .dateBlock {
    min-width: 40px;
  }
  .calendarRecentPanel .calendarItem .dateNumber {
    font-size: 18px;
  }
  .calendarRecentPanel .calendarItem .itemTitle {
    font-size: 14px;
  }
  .calendarRecentPanel .calendarItem .itemTime {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .calendarRecentPanel {
    height: 450px;
  }
  .calendarRecentPanel .calendarItems {
    max-height: 330px;
  }
  .calendarRecentPanel .calendarItem {
    padding: 10px;
    gap: 10px;
  }
  .calendarRecentPanel .calendarItem .itemActions {
    gap: 6px;
  }
  .calendarRecentPanel .calendarItem .iconButton {
    padding: 6px;
  }
}
.calendar-error-display {
  background: #fff;
  border: 1px solid #e74c3c;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.1);
}
.calendar-error-display .calendar-error-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.calendar-error-display .calendar-error-content .calendar-error-icon {
  flex-shrink: 0;
}
.calendar-error-display .calendar-error-content .calendar-error-icon .error-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(89%) saturate(2613%) hue-rotate(346deg) brightness(95%) contrast(89%);
}
.calendar-error-display .calendar-error-content .calendar-error-text {
  flex: 1;
  min-width: 0;
}
.calendar-error-display .calendar-error-content .calendar-error-text .calendar-error-title {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #e74c3c;
  line-height: 1.4;
}
.calendar-error-display .calendar-error-content .calendar-error-text .calendar-error-description {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.calendar-error-display .calendar-error-content .calendar-error-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-retry-btn {
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-retry-btn:hover {
  background: #c0392b;
  transform: translateY(-1px);
}
.calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-retry-btn:active {
  transform: translateY(0);
}
.calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-retry-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}
.calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn:hover {
  background: rgba(231, 76, 60, 0.1);
}
.calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}
.calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn .dismiss-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(89%) saturate(2613%) hue-rotate(346deg) brightness(95%) contrast(89%);
}

.calendar-error-display.compact {
  padding: 12px;
  margin: 8px 0;
}
.calendar-error-display.compact .calendar-error-content {
  gap: 8px;
}
.calendar-error-display.compact .calendar-error-content .calendar-error-icon .error-icon {
  width: 20px;
  height: 20px;
}
.calendar-error-display.compact .calendar-error-content .calendar-error-text .calendar-error-title {
  font-size: 14px;
  margin-bottom: 2px;
}
.calendar-error-display.compact .calendar-error-content .calendar-error-text .calendar-error-description {
  font-size: 13px;
}
.calendar-error-display.compact .calendar-error-content .calendar-error-actions .calendar-error-retry-btn {
  padding: 6px 12px;
  font-size: 13px;
}

.calendar-error-display.warning {
  border-color: #f39c12;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.1);
}
.calendar-error-display.warning .calendar-error-content .calendar-error-icon .error-icon {
  filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(1200%) hue-rotate(2deg) brightness(101%) contrast(101%);
}
.calendar-error-display.warning .calendar-error-content .calendar-error-text .calendar-error-title {
  color: #f39c12;
}
.calendar-error-display.warning .calendar-error-content .calendar-error-actions .calendar-error-retry-btn {
  background: #f39c12;
}
.calendar-error-display.warning .calendar-error-content .calendar-error-actions .calendar-error-retry-btn:hover {
  background: #e67e22;
}
.calendar-error-display.warning .calendar-error-content .calendar-error-actions .calendar-error-retry-btn:focus {
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}
.calendar-error-display.warning .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn:hover {
  background: rgba(243, 156, 18, 0.1);
}
.calendar-error-display.warning .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn:focus {
  box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
}
.calendar-error-display.warning .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn .dismiss-icon {
  filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(1200%) hue-rotate(2deg) brightness(101%) contrast(101%);
}

.calendar-error-display.info {
  border-color: #3498db;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}
.calendar-error-display.info .calendar-error-content .calendar-error-icon .error-icon {
  filter: brightness(0) saturate(100%) invert(41%) sepia(96%) saturate(1347%) hue-rotate(187deg) brightness(98%) contrast(86%);
}
.calendar-error-display.info .calendar-error-content .calendar-error-text .calendar-error-title {
  color: #3498db;
}
.calendar-error-display.info .calendar-error-content .calendar-error-actions .calendar-error-retry-btn {
  background: #3498db;
}
.calendar-error-display.info .calendar-error-content .calendar-error-actions .calendar-error-retry-btn:hover {
  background: #2980b9;
}
.calendar-error-display.info .calendar-error-content .calendar-error-actions .calendar-error-retry-btn:focus {
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
.calendar-error-display.info .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn:hover {
  background: rgba(52, 152, 219, 0.1);
}
.calendar-error-display.info .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn:focus {
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.calendar-error-display.info .calendar-error-content .calendar-error-actions .calendar-error-dismiss-btn .dismiss-icon {
  filter: brightness(0) saturate(100%) invert(41%) sepia(96%) saturate(1347%) hue-rotate(187deg) brightness(98%) contrast(86%);
}

@media (max-width: 768px) {
  .calendar-error-display .calendar-error-content {
    flex-direction: column;
    gap: 12px;
  }
  .calendar-error-display .calendar-error-content .calendar-error-actions {
    align-self: flex-start;
  }
  .calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-retry-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .calendar-error-display {
    padding: 12px;
    margin: 12px 0;
  }
  .calendar-error-display .calendar-error-content .calendar-error-text .calendar-error-title {
    font-size: 15px;
  }
  .calendar-error-display .calendar-error-content .calendar-error-text .calendar-error-description {
    font-size: 13px;
  }
  .calendar-error-display .calendar-error-content .calendar-error-actions {
    width: 100%;
    justify-content: space-between;
  }
  .calendar-error-display .calendar-error-content .calendar-error-actions .calendar-error-retry-btn {
    flex: 1;
    max-width: 200px;
  }
}
.calendar-connection-error .connection-error {
  margin-bottom: 16px;
}
.calendar-connection-error .permission-help,
.calendar-connection-error .network-help {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 16px;
  margin-top: 12px;
}
.calendar-connection-error .permission-help .permission-help-text,
.calendar-connection-error .permission-help .network-help-text,
.calendar-connection-error .network-help .permission-help-text,
.calendar-connection-error .network-help .network-help-text {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
}
.calendar-connection-error .permission-help .permission-help-list,
.calendar-connection-error .permission-help .network-help-list,
.calendar-connection-error .network-help .permission-help-list,
.calendar-connection-error .network-help .network-help-list {
  margin: 0;
  padding-left: 20px;
}
.calendar-connection-error .permission-help .permission-help-list li,
.calendar-connection-error .permission-help .network-help-list li,
.calendar-connection-error .network-help .permission-help-list li,
.calendar-connection-error .network-help .network-help-list li {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 4px;
}
.calendar-connection-error .permission-help .permission-help-list li:last-child,
.calendar-connection-error .permission-help .network-help-list li:last-child,
.calendar-connection-error .network-help .permission-help-list li:last-child,
.calendar-connection-error .network-help .network-help-list li:last-child {
  margin-bottom: 0;
}
.calendar-connection-error .permission-help {
  border-left: 4px solid #f39c12;
  background: #fef9e7;
  border-color: #f39c12;
}
.calendar-connection-error .permission-help .permission-help-text {
  color: #b7791f;
}
.calendar-connection-error .permission-help .permission-help-list li {
  color: #856404;
}
.calendar-connection-error .network-help {
  border-left: 4px solid #e74c3c;
  background: #fdf2f2;
  border-color: #e74c3c;
}
.calendar-connection-error .network-help .network-help-text {
  color: #a94442;
}
.calendar-connection-error .network-help .network-help-list li {
  color: #721c24;
}

@media (max-width: 768px) {
  .calendar-connection-error .permission-help,
  .calendar-connection-error .network-help {
    padding: 12px;
  }
  .calendar-connection-error .permission-help .permission-help-text,
  .calendar-connection-error .permission-help .network-help-text,
  .calendar-connection-error .network-help .permission-help-text,
  .calendar-connection-error .network-help .network-help-text {
    font-size: 13px;
  }
  .calendar-connection-error .permission-help .permission-help-list,
  .calendar-connection-error .permission-help .network-help-list,
  .calendar-connection-error .network-help .permission-help-list,
  .calendar-connection-error .network-help .network-help-list {
    padding-left: 16px;
  }
  .calendar-connection-error .permission-help .permission-help-list li,
  .calendar-connection-error .permission-help .network-help-list li,
  .calendar-connection-error .network-help .permission-help-list li,
  .calendar-connection-error .network-help .network-help-list li {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .calendar-connection-error .permission-help,
  .calendar-connection-error .network-help {
    padding: 10px;
    margin-top: 8px;
  }
  .calendar-connection-error .permission-help .permission-help-list,
  .calendar-connection-error .permission-help .network-help-list,
  .calendar-connection-error .network-help .permission-help-list,
  .calendar-connection-error .network-help .network-help-list {
    padding-left: 14px;
  }
}
.homeControlsPanel {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.headerStyleActions {
  width: 100%;
  position: relative;
  height: 126px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 14px;
  color: #001221;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media (max-width: 768px) {
  .headerStyleActions {
    gap: 24px;
    height: auto;
    flex-wrap: wrap;
  }
}

.headerActionButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding-bottom: 36px;
}
.headerActionButton .button-wrapper {
  width: 64px;
  display: flex;
  align-items: center;
}
.headerActionButton .button-container {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 20px;
  transition: background-color 0.2s ease;
}
.headerActionButton .button-text {
  position: relative;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 20px;
  text-align: center;
}
.headerActionButton:hover {
  transform: translateY(-1px);
}
.headerActionButton:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .headerActionButton {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px 36px;
  }
}

.headerActionButtonIcon {
  width: 25px;
  height: 25px;
}

.newMeetingButton .button-container {
  background-color: rgba(156, 50, 140, 0.08) !important;
  transition: background-color 0.2s ease;
}
.newMeetingButton .button-text {
  color: #5B074E !important;
}
.newMeetingButton .headerActionButtonIcon {
  color: #9C328C;
  fill: #9C328C;
}
.newMeetingButton .headerActionButtonIcon path {
  fill: #9C328C !important;
}

.newMeetingButton:hover .button-container,
.homeControlsPanel .newMeetingButton:hover .button-container,
.authenticated-home-page .newMeetingButton:hover .button-container,
.newMeetingButton .button-container:hover,
.homeControlsPanel .newMeetingButton .button-container:hover,
.authenticated-home-page .newMeetingButton .button-container:hover {
  background-color: rgba(156, 50, 140, 0.2) !important;
}

.joinButton .button-container,
.scheduleButton .button-container {
  background-color: rgba(36, 76, 145, 0.04) !important;
  transition: background-color 0.2s ease;
}
.joinButton .button-text,
.scheduleButton .button-text {
  color: #244C91 !important;
}
.joinButton .headerActionButtonIcon,
.scheduleButton .headerActionButtonIcon {
  color: #244C91;
  fill: #244C91;
}
.joinButton .headerActionButtonIcon path,
.scheduleButton .headerActionButtonIcon path {
  fill: #244C91 !important;
}
.joinButton .icon-badge,
.scheduleButton .icon-badge {
  width: 24px;
  height: 24px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.joinButton .icon-badge .headerActionButtonIcon,
.scheduleButton .icon-badge .headerActionButtonIcon {
  width: 25px;
  height: 25px;
  color: #244C91;
  fill: #244C91;
}
.joinButton .icon-badge .headerActionButtonIcon path,
.scheduleButton .icon-badge .headerActionButtonIcon path {
  fill: #244C91 !important;
}

.joinButton:hover .button-container,
.scheduleButton:hover .button-container,
.homeControlsPanel .joinButton:hover .button-container,
.homeControlsPanel .scheduleButton:hover .button-container,
.authenticated-home-page .joinButton:hover .button-container,
.authenticated-home-page .scheduleButton:hover .button-container,
.joinButton .button-container:hover,
.scheduleButton .button-container:hover,
.homeControlsPanel .joinButton .button-container:hover,
.homeControlsPanel .scheduleButton .button-container:hover,
.authenticated-home-page .joinButton .button-container:hover,
.authenticated-home-page .scheduleButton .button-container:hover {
  background-color: rgba(36, 76, 145, 0.15) !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.headerActionButton:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (hover: none) and (pointer: coarse) {
  .headerActionButton {
    min-height: 44px;
    padding: 14px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .headerActionButton {
    transition: none;
  }
  .headerActionButton:hover {
    transform: none;
  }
  .headerActionButton .button-container {
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .headerActionButton {
    border: 2px solid #001221;
  }
  .headerActionButton:hover {
    background-color: #001221;
    color: #FFFFFF;
  }
  .headerActionButton .button-container {
    border: 2px solid #001221;
  }
  .newMeetingButton .button-container {
    background-color: #9C328C;
    color: #FFFFFF;
  }
  .joinButton .button-container,
  .scheduleButton .button-container {
    background-color: #244C91;
    color: #FFFFFF;
  }
}
.authErrorBanner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 12px 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.authErrorBanner.warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}
.authErrorBanner.error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
.authErrorBanner.blocking {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.authErrorContent {
  display: flex;
  align-items: center;
  flex: 1;
}

.authErrorIcon {
  margin-right: 8px;
  font-size: 1.1rem;
}

.authErrorText strong {
  font-weight: bold;
}

.authErrorDismissButton {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  margin-left: 12px;
  transition: opacity 0.2s ease;
}
.authErrorDismissButton:hover {
  opacity: 0.7;
}

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

.authErrorModalContent {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.authErrorModalText {
  color: #721c24;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.authErrorModalText strong {
  font-weight: bold;
}

.authErrorModalButtons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.authErrorModalButton {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  min-width: 120px;
  transition: all 0.2s ease;
}
.authErrorModalButton.primary {
  background-color: #244C91;
  color: white;
}
.authErrorModalButton.primary:hover {
  background-color: #1a3a6b;
}
.authErrorModalButton.secondary {
  background-color: transparent;
  color: #244C91;
  border: 1px solid #244C91;
}
.authErrorModalButton.secondary:hover {
  background-color: #f8f9fa;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.authErrorBanner .authErrorDismissButton:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

.authErrorModal .authErrorModalTitle {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.authErrorModal .authErrorModalDescription {
  margin: 0 0 16px 0;
  line-height: 1.4;
}
.authErrorModal .authErrorModalButton:focus-visible {
  outline: 2px solid #9c328c;
  outline-offset: 2px;
  border-radius: 4px;
}

.header {
  background-color: white;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  border-bottom: none;
  min-height: 60px;
  box-shadow: none;
}
@media (max-width: 1200px) {
  .header {
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 1023px) {
  .header {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0.5rem 1rem;
    min-height: 56px;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 0.5rem 0.75rem;
  }
}

.headerLeft {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
}

.logoImage {
  width: 111px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logoImage {
    width: 100px;
  }
}

.headerNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex: 1;
}
@media (max-width: 1200px) {
  .headerNav {
    gap: 1rem;
  }
}
@media (max-width: 1024px) {
  .headerNav {
    display: none;
  }
}

.navItem {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #0E1B33;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.navItem:hover {
  background-color: #f5f5f5;
  color: #0E1B33;
}
@media (max-width: 1200px) {
  .navItem {
    font-size: 14px;
    padding: 6px 8px;
  }
}

.navChevron {
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: transform 0.2s ease;
}
.navChevron.open {
  transform: rotate(180deg);
}

.navDropdown {
  position: relative;
  display: inline-block;
}

.navDropdownMenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 200px;
  padding: 8px 0;
  margin-top: 4px;
}
@media (max-width: 1200px) {
  .navDropdownMenu {
    min-width: 180px;
  }
}

.navDropdownItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #001221;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.navDropdownItem:hover {
  background-color: #f5f5f5;
  color: #001221;
}
.navDropdownItem:focus {
  outline: 2px solid #1976d2;
  outline-offset: -2px;
  background-color: #f5f5f5;
  color: #001221;
}
.navDropdownItem:visited {
  color: #001221;
}
@media (max-width: 1200px) {
  .navDropdownItem {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

.navDropdownIconWrapper {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .navDropdownIconWrapper {
    width: 22px;
    height: 22px;
  }
}

.navDropdownIcon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 30%;
  padding: 6px;
  box-sizing: border-box;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .navDropdownIcon {
    width: 28px;
    height: 28px;
    padding: 5px;
  }
}

.navDropdownIcon[src*=google_play],
.navDropdownIcon[src*=apple_icon],
.navDropdownIcon[src*=windows_icon] {
  background-color: #0B182E;
  border-radius: 30%;
  padding: 6px;
}

.navDropdownIcon[src*=gcalendar_icon],
.navDropdownIcon[src*=outlook_icon],
.navDropdownIcon[src*=slack] {
  background-color: #F2F2F3;
  border-radius: 30%;
  padding: 6px;
}

@media (max-width: 1024px) {
  .navDropdown {
    display: none;
  }
}
.mobileMenuButton {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
@media (max-width: 1024px) {
  .mobileMenuButton {
    display: flex;
    align-items: center;
  }
}
.mobileMenuButton:hover {
  background-color: #f5f5f5;
}

.burgerIcon {
  width: 20px;
  height: 20px;
}

.mobileMenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}
@media (max-width: 1024px) {
  .mobileMenu {
    display: block;
  }
}

.mobileMenuContent {
  padding: 16px;
}

.mobileNavItem {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.mobileNavItem:last-child {
  border-bottom: none;
}
.mobileNavItem:hover {
  color: #1976d2;
}
.mobileNavItem.loginItem {
  margin-top: 16px;
  padding: 12px 24px;
  background-color: #1976d2;
  color: white;
  border-radius: 6px;
  text-align: center;
}
.mobileNavItem.loginItem:hover {
  background-color: #1565c0;
  color: white;
}

.mobileNavSection {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.mobileNavSection:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mobileNavSectionTitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding: 0 0 4px 0;
}

.mobileNavSubItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid #f8f8f8;
  transition: color 0.2s ease;
}
.mobileNavSubItem:last-child {
  border-bottom: none;
}
.mobileNavSubItem:hover {
  color: #333;
}

.mobileNavIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 2px;
  box-sizing: border-box;
}
.mobileNavIcon[src*=google_play] {
  background-color: #000;
  padding: 3px;
}
.mobileNavIcon[src*=apple_icon] {
  background-color: #000;
  padding: 2px;
}
.mobileNavIcon[src*=gcalendar_icon], .mobileNavIcon[src*=outlook_icon], .mobileNavIcon[src*=slack] {
  background-color: #F2F2F3;
  padding: 2px;
}

.headerRight {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.downloadButton {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #1976d2;
  border-radius: 6px;
  color: #1976d2;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.downloadButton:hover {
  background-color: #f5f5f5;
}

.buttonIcon {
  width: 16px;
  height: 16px;
}

.userDropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.userAvatar {
  width: 32px;
  height: 32px;
  background-color: #1976d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  overflow: hidden;
}
.userAvatar.hasImage {
  background-color: transparent;
}

.userAvatarImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.userAvatarInitial {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
}
.userAvatarInitial.hidden {
  display: none;
}

.userInfo {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  border: none;
  background: none;
  outline: none;
  transition: background-color 0.2s ease;
}
.userInfo:hover {
  background-color: #f5f5f5;
}
.userInfo:focus {
  outline: none;
  background-color: #f5f5f5;
}

.userName {
  font-size: 14px;
  color: #0E1B33;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-decoration: underline;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chevronIcon {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.chevronIcon.open {
  transform: rotate(180deg);
}

.dropdownMenu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 180px;
  margin-top: 4px;
}

.dropdownItem {
  display: flex;
  height: 31px;
  padding: 16px 16px 16px 12px;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  width: 100%;
  border: none;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  gap: 8px;
  transition: background-color 0.2s ease;
}
.dropdownItem:hover {
  background-color: #f5f5f5;
}
.dropdownItem:first-child {
  border-radius: 8px 8px 0 0;
}
.dropdownItem:last-child {
  border-radius: 0 0 8px 8px;
}

@media (max-width: 768px) {
  .searchForm {
    display: none;
  }
}

.searchContainer {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.searchInput {
  width: 240px;
  padding: 10px 40px 10px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
  background-color: #f8f9fa;
}
.searchInput:focus {
  border-color: #9c328c;
  box-shadow: 0 0 0 2px rgba(156, 50, 140, 0.1);
  background-color: white;
}
.searchInput::placeholder {
  color: #999;
}
@media (max-width: 1024px) {
  .searchInput {
    width: 200px;
  }
}

.searchButton {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.searchButton:hover {
  background-color: rgba(156, 50, 140, 0.1);
  color: #9c328c;
}

.loginButton {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: none;
  border: none;
  color: #0E1B33;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
}
.loginButton:hover {
  background-color: #f5f5f5;
  color: #0E1B33;
}
@media (max-width: 768px) {
  .loginButton {
    display: none;
  }
}

.loginButtonChevron {
  width: 12px;
  height: 12px;
}

.mobileMenuButton {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.mobileMenuButton:hover {
  background-color: #f5f5f5;
}
@media (max-width: 1024px) {
  .mobileMenuButton {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.burgerIcon {
  width: 20px;
  height: 20px;
}

.mobileMenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media (min-width: 1025px) {
  .mobileMenu {
    display: none;
  }
}

.mobileMenuContent {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobileNavItem {
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.mobileNavItem:hover {
  background-color: #f5f5f5;
}
.mobileNavItem.loginItem {
  margin-top: 0.5rem;
  background-color: #1976d2;
  color: white;
}
.mobileNavItem.loginItem:hover {
  background-color: #1565c0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navItem:focus-visible,
.loginButton:focus-visible,
.searchButton:focus-visible,
.mobileMenuButton:focus-visible,
.userInfo:focus-visible,
.dropdownItem:focus-visible,
.mobileNavItem:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
  border-radius: 4px;
}

.dropdownMenu .dropdownItem:focus {
  background-color: #f0f0f0;
  outline: 2px solid #9c328c;
  outline-offset: -2px;
}

.searchInput:focus {
  outline: 2px solid #9c328c;
  outline-offset: 2px;
}

@media (hover: none) and (pointer: coarse) {
  .navItem,
  .loginButton,
  .mobileMenuButton {
    min-height: 44px;
    padding: 12px 16px;
  }
  .searchInput {
    min-height: 44px;
    padding: 12px 40px 12px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .loginButton,
  .navItem,
  .searchButton,
  .mobileMenuButton {
    transition: none;
  }
  .loginButton:hover,
  .navItem:hover,
  .searchButton:hover,
  .mobileMenuButton:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .header {
    border-bottom: 1px solid #000;
  }
  .navItem,
  .loginButton {
    border-color: #000;
    color: #000;
  }
  .navItem:hover,
  .loginButton:hover {
    background-color: #000;
    color: #fff;
  }
  .searchInput {
    border-color: #000;
  }
  .searchInput:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
  }
}
.meetingOverlays {
  position: fixed;
  top: 80px;
  left: 20px;
  width: 150px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
  animation: fadeInOverlay 0.3s ease-out;
}
.meetingOverlays .view-transcript-button {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  width: 100%;
}
.meetingOverlays .view-transcript-button:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.meetingOverlays .view-transcript-button:active {
  transform: translateY(0);
}
.meetingOverlays .view-transcript-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  display: block;
  background-color: transparent;
  opacity: 1;
  transition: none;
}
.overlay-container.loading {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.overlay-element {
  position: absolute;
  z-index: 10001;
  pointer-events: none;
  display: block;
}
.overlay-element.interactive {
  pointer-events: auto;
}
.overlay-element.hidden {
  display: none;
}

.overlay-loading-indicator {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 99998;
}

.loginPage {
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.loginPage.withBanner {
  padding-top: 60px;
}
.loginPage .home__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.loginPage .home__content__centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.loginPage__backgroundContainer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 5rem 4rem 2rem 4rem;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #FFF8FD 40%, #FFEEFC 100%);
  border-radius: 52px;
  border: 1px solid rgba(156, 50, 140, 0.1);
}
@media (max-width: 1024px) {
  .loginPage__backgroundContainer {
    padding: 4rem 3rem 2rem 3rem;
  }
}
@media (max-width: 768px) {
  .loginPage__backgroundContainer {
    padding: 3rem 1.5rem 2rem 1.5rem;
    margin: 1.5rem;
  }
}
.loginPage__backgroundContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="1501" height="711" viewBox="0 0 1501 711" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 51.6624C0.5 23.1384 23.6233 0.0150757 52.1473 0.0150757H1448.78C1477.3 0.0150757 1500.42 23.1384 1500.42 51.6624V658.519C1500.42 687.043 1477.3 710.166 1448.78 710.166H52.1473C23.6232 710.166 0.5 687.043 0.5 658.519V51.6624Z" fill="url(%23paint0_linear_830_24696)"/><defs><linearGradient id="paint0_linear_830_24696" x1="10.784" y1="15.0607" x2="1577.21" y2="616.74" gradientUnits="userSpaceOnUse"><stop offset="0.403846" stop-color="%23FFF8FD"/><stop offset="1" stop-color="%23FFEEFC"/></linearGradient></defs></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  border-radius: 52px;
}
.loginPage__centeredContent {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.loginPage__contentLeft {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-top: 4rem;
}
.loginPage__contentRight {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.loginPage__aiLabel {
  background-color: #f0f0f0;
  color: #04102A;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 12px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  align-self: center;
  margin-left: -680px;
  position: relative;
}
@media (max-width: 1024px) {
  .loginPage__aiLabel {
    margin-left: -560px;
  }
}
@media (max-width: 768px) {
  .loginPage__aiLabel {
    margin-left: 0;
    align-self: center;
  }
}
@media (max-width: 480px) {
  .loginPage__aiLabel {
    margin-left: 0;
    align-self: center;
  }
}
.loginPage__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 2rem;
  min-width: 400px;
}
.loginPage__description {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0C172B;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  text-align: center;
}
.loginPage__loading {
  font-size: 1.1rem;
  color: #4b5563;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
}
.loginPage__actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .loginPage__actions {
    flex-direction: column;
  }
}
.loginPage__startMeetingButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 278px;
  height: 48px;
  padding: 0 28px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background-color: #183260;
  color: #FFFFFF;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(24, 50, 96, 0.25);
}
.loginPage__startMeetingButton:hover:not(:disabled) {
  background-color: #1E3F78;
  box-shadow: 0 6px 16px rgba(24, 50, 96, 0.35);
}
.loginPage__startMeetingButton:active:not(:disabled) {
  background-color: #244C91;
  box-shadow: 0 2px 8px rgba(24, 50, 96, 0.25);
}
.loginPage__startMeetingButton:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
.loginPage__startMeetingButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.loginPage__startMeetingButton .btn-icon, .loginPage__startMeetingButton .buttonIcon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
@media (prefers-reduced-motion: reduce) {
  .loginPage__startMeetingButton {
    transition: none;
  }
}
.loginPage__joinMeetingButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 268px;
  height: 48px;
  padding: 0 28px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background-color: #FFFFFF;
  color: #0B182E;
  border: 2px solid #0B182E;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.loginPage__joinMeetingButton:hover:not(:disabled) {
  background-color: #E8EDF5;
}
.loginPage__joinMeetingButton:active:not(:disabled) {
  background-color: #D1DAEB;
}
.loginPage__joinMeetingButton:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
.loginPage__joinMeetingButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.loginPage__joinMeetingButton .btn-icon, .loginPage__joinMeetingButton .buttonChevron {
  width: 12px;
  height: 12px;
  opacity: 0.9;
}
@media (prefers-reduced-motion: reduce) {
  .loginPage__joinMeetingButton {
    transition: none;
  }
}
.loginPage__testPanel {
  margin-top: 2rem;
  max-width: 300px;
  align-self: center;
}
.loginPage__leftPanel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}
.loginPage__title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: #0C172B;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  text-align: center;
}
.loginPage__titleBrand {
  background: linear-gradient(90deg, #9c328c 0%, #244C91 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.loginPage__rightPanel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.loginPage__imageContainer {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 2rem 0;
  z-index: 1;
  align-self: flex-end;
}
.loginPage__transcriptOverlay {
  position: absolute;
  bottom: -20px;
  left: -40px;
  z-index: 2;
}
@media (max-width: 768px) {
  .loginPage__transcriptOverlay {
    left: -20px;
    bottom: -10px;
  }
}
.loginPage__transcriptImage {
  width: auto;
  height: 280px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .loginPage__transcriptImage {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .loginPage__transcriptImage {
    height: 180px;
  }
}
.loginPage__meetNowButton {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #1e3a5f;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
  min-width: 300px;
}
.loginPage__meetNowButton:hover {
  background-color: #152d47;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.4);
}
.loginPage__meetNowButton:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.3);
}
.loginPage__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.loginPage__mockupImage {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  background: transparent;
}
@media (max-width: 1200px) {
  .loginPage .home__content {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  .loginPage__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 1.2rem;
  }
  .loginPage__backgroundContainer {
    max-width: 900px;
    padding: 4rem 3rem 4rem 3rem;
  }
  .loginPage__imageContainer {
    max-width: 600px;
  }
  .loginPage__mockup {
    max-width: 100%;
  }
  .loginPage__mockupImage {
    max-width: 100%;
    max-height: 60vh;
  }
}
@media (max-width: 1024px) {
  .loginPage .home__content {
    padding: 1rem;
  }
  .loginPage__content {
    align-items: center;
    text-align: center;
    min-width: 0;
    width: 100%;
  }
  .loginPage__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    max-width: 100%;
  }
  .loginPage__backgroundContainer {
    max-width: 700px;
    padding: 3rem 2rem 3.5rem 2rem;
  }
  .loginPage__imageContainer {
    max-width: 500px;
  }
  .loginPage__actions {
    align-items: center;
    justify-content: center;
  }
  .loginPage__mockup {
    max-width: 100%;
  }
  .loginPage__mockupImage {
    width: 100%;
    max-width: 100%;
    max-height: 56vh;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .loginPage .home__content {
    padding: 0.75rem;
  }
  .loginPage__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 1rem;
  }
  .loginPage__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  .loginPage__backgroundContainer {
    max-width: 600px;
    padding: 2.5rem 1.5rem 3rem 1.5rem;
  }
  .loginPage__imageContainer {
    max-width: 400px;
  }
  .loginPage__meetNowButton {
    padding: 14px 32px;
    font-size: 1rem;
    min-width: 300px;
  }
  .loginPage__mockup {
    max-width: 100%;
  }
  .loginPage__mockupImage {
    width: 100%;
    max-width: 100%;
    max-height: 42vh;
  }
  .loginPage__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }
  .loginPage__actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .loginPage .home__content {
    padding: 0.5rem;
  }
  .loginPage__imageContainer {
    max-width: 300px;
  }
  .loginPage__transcriptImage {
    height: 120px;
  }
  .loginPage__description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .loginPage__meetNowButton {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 280px;
  }
  .loginPage__startMeetingButton, .loginPage__joinMeetingButton {
    width: 100%;
    max-width: 280px;
    height: 44px;
    padding: 0 20px;
    font-size: 0.9rem;
    border-radius: 32px;
  }
  .loginPage__mockup {
    max-width: 100%;
  }
  .loginPage__mockupImage {
    width: 100%;
    max-width: 100%;
    max-height: 36vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loginPage__startMeetingButton, .loginPage__joinMeetingButton, .loginPage__meetNowButton {
    transition: none;
  }
  .loginPage__startMeetingButton:hover, .loginPage__joinMeetingButton:hover, .loginPage__meetNowButton:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .loginPage__title, .loginPage__titleBrand {
    color: #000;
  }
  .loginPage__description {
    color: #333;
  }
  .loginPage__startMeetingButton {
    border: 2px solid #000;
  }
  .loginPage__joinMeetingButton {
    border-color: #000;
    color: #000;
  }
  .loginPage__joinMeetingButton:hover {
    background-color: #000;
    color: #fff;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loginPage__startMeetingButton:focus-visible, .loginPage__joinMeetingButton:focus-visible, .loginPage__meetNowButton:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 3px;
}
.loginPage__loading[role=status] {
  position: relative;
}

@media (hover: none) and (pointer: coarse) {
  .loginPage__startMeetingButton, .loginPage__joinMeetingButton {
    min-height: 44px;
    padding: 16px 32px;
  }
}
@media (min-width: 1400px) {
  .loginPage .home__content {
    max-width: 1400px;
  }
  .loginPage__backgroundContainer {
    max-width: 1400px;
    padding: 4rem 6rem 3rem 6rem;
  }
  .loginPage__title {
    font-size: clamp(3rem, 4vw, 4rem);
  }
  .loginPage__description {
    font-size: 1.25rem;
    max-width: 700px;
  }
}
@media (min-width: 1500px) {
  .loginPage__backgroundContainer {
    max-width: 1600px;
    padding: 4rem 6rem 3rem 6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 4rem;
  }
  .loginPage__centeredContent {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    gap: 4rem;
  }
  .loginPage__contentLeft {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: auto;
    margin-top: 0;
    max-width: 600px;
  }
  .loginPage__contentRight {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .loginPage__aiLabel {
    margin-left: 0;
    align-self: flex-start;
  }
  .loginPage__content {
    align-items: flex-start;
    text-align: left;
    min-width: 0;
    width: 100%;
  }
  .loginPage__title {
    text-align: left;
    max-width: 100%;
  }
  .loginPage__description {
    text-align: left;
    max-width: 100%;
  }
  .loginPage__actions {
    justify-content: flex-start;
  }
  .loginPage__imageContainer {
    max-width: 700px;
    align-self: center;
  }
}
@media (min-width: 1600px) {
  .loginPage__backgroundContainer {
    max-width: 1800px;
    padding: 5rem 8rem 4rem 8rem;
    gap: 6rem;
  }
  .loginPage__centeredContent {
    gap: 6rem;
  }
  .loginPage__contentLeft {
    max-width: 700px;
  }
  .loginPage__imageContainer {
    max-width: 800px;
  }
}
.unauthenticatedPage {
  background-color: white;
}
.unauthenticatedPage__content {
  text-align: center;
}
.unauthenticatedPage__backgroundContainer {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 3rem 4rem 4rem 4rem;
  margin: 2rem 10px;
  background: linear-gradient(135deg, #FFF8FD 40%, #FFEEFC 100%);
  border-radius: 52px;
  border: 1px solid rgba(156, 50, 140, 0.1);
}
.unauthenticatedPage__backgroundContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="1501" height="711" viewBox="0 0 1501 711" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 51.6624C0.5 23.1384 23.6233 0.0150757 52.1473 0.0150757H1448.78C1477.3 0.0150757 1500.42 23.1384 1500.42 51.6624V658.519C1500.42 687.043 1477.3 710.166 1448.78 710.166H52.1473C23.6232 710.166 0.5 687.043 0.5 658.519V51.6624Z" fill="url(%23paint0_linear_830_24696)"/><defs><linearGradient id="paint0_linear_830_24696" x1="10.784" y1="15.0607" x2="1577.21" y2="616.74" gradientUnits="userSpaceOnUse"><stop offset="0.403846" stop-color="%23FFF8FD"/><stop offset="1" stop-color="%23FFEEFC"/></linearGradient></defs></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  border-radius: 52px;
}
.unauthenticatedPage__centeredContent {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}
.unauthenticatedPage__description {
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 2rem auto;
}
.unauthenticatedPage__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}
.unauthenticatedPage__meetNowButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 300px;
  height: 48px;
  padding: 0 28px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background-color: #183260;
  color: #FFFFFF;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(24, 50, 96, 0.25);
}
.unauthenticatedPage__meetNowButton:hover:not(:disabled) {
  background-color: #1E3F78;
  box-shadow: 0 6px 16px rgba(24, 50, 96, 0.35);
}
.unauthenticatedPage__meetNowButton:active:not(:disabled) {
  background-color: #244C91;
  box-shadow: 0 2px 8px rgba(24, 50, 96, 0.25);
}
.unauthenticatedPage__meetNowButton:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
.unauthenticatedPage__meetNowButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.unauthenticatedPage__meetNowButton .btn-icon, .unauthenticatedPage__meetNowButton .buttonIcon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
@media (prefers-reduced-motion: reduce) {
  .unauthenticatedPage__meetNowButton {
    transition: none;
  }
}
.unauthenticatedPage__meetNowButton {
  min-width: 300px;
}
.unauthenticatedPage__leftPanel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}
.unauthenticatedPage__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.unauthenticatedPage__titleBrand {
  color: #9c328c;
  font-weight: 700;
}
.unauthenticatedPage__rightPanel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.unauthenticatedPage__imageContainer {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.unauthenticatedPage__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 100%;
}
.unauthenticatedPage__mockupImage {
  max-width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
}

.settingsModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.settingsModalOverlay .settingsModal {
  background: #FFFFFF;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.settingsModalOverlay .settingsHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 0;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
  margin-bottom: 0;
}
.settingsModalOverlay .settingsTitle {
  font-size: 24px;
  font-weight: 600;
  color: #374151;
  margin: 0;
}
.settingsModalOverlay .settingsCloseButton {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.settingsModalOverlay .settingsCloseButton:hover {
  background-color: #f3f4f6;
}
.settingsModalOverlay .settingsCloseButton img {
  width: 20px;
  height: 20px;
}
.settingsModalOverlay .settingsContent {
  display: flex;
  flex: 1;
  min-height: 0;
}
.settingsModalOverlay .settingsSidebar {
  width: 220px;
  background-color: #f9fafb;
  border-right: 1px solid #e5e7eb;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.settingsModalOverlay .sidebarTab {
  background: none;
  border: none;
  padding: 12px 24px;
  text-align: left;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.settingsModalOverlay .sidebarTab:hover {
  background-color: #e5e7eb;
  color: #374151;
}
.settingsModalOverlay .sidebarTab.active {
  background-color: #dbeafe;
  color: #1e40af;
  border-right: 3px solid #3b82f6;
}
.settingsModalOverlay .settingsMainContent {
  flex: 1;
  padding: 24px 32px;
  overflow-y: auto;
}
.settingsModalOverlay .settingsTabContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.settingsModalOverlay .devicesLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "left right" "footer footer";
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
.settingsModalOverlay .devicesLeft {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-area: left;
}
.settingsModalOverlay .devicesRight {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-area: right;
}
.settingsModalOverlay .devicesFooter {
  grid-area: footer;
}
.settingsModalOverlay .cameraPreview {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.settingsModalOverlay .cameraPreviewFrame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.settingsModalOverlay .cameraPreviewContent {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.settingsModalOverlay .cameraFeed {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
  transform: scaleX(-1);
}
.settingsModalOverlay .micVizCard {
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 12px 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.settingsModalOverlay .micVizHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 8px;
}
.settingsModalOverlay .micVizValue {
  font-weight: 600;
  color: #1f2937;
}
.settingsModalOverlay .micVisualizer {
  position: relative;
  height: 64px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  align-items: end;
  gap: 4px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.03) 100%);
  border-radius: 6px;
  padding: 6px 8px;
}
.settingsModalOverlay .micBar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  transition: height 120ms ease, background-color 120ms ease;
}
.settingsModalOverlay .micPeak {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #2563eb;
  opacity: 0.5;
}
.settingsModalOverlay .micLevelBar {
  height: 6px;
  width: 100%;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.settingsModalOverlay .micLevelFill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transition: width 80ms linear;
}
.settingsModalOverlay .deviceSettings {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.settingsModalOverlay .deviceSetting {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.settingsModalOverlay .deviceLabel {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}
.settingsModalOverlay .deviceSelect {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #FFFFFF;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .settingsModalOverlay .deviceSelect {
    max-width: 400px;
  }
}
.settingsModalOverlay .deviceSelect:hover {
  border-color: #9ca3af;
}
.settingsModalOverlay .deviceSelect:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.settingsModalOverlay .testSoundButton {
  margin-top: 8px;
  padding: 8px 16px;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #3b82f6;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}
.settingsModalOverlay .testSoundButton:hover {
  background-color: #f3f4f6;
  border-color: #3b82f6;
}
.settingsModalOverlay .meetingOptions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.settingsModalOverlay .meetingOptionsRow {
  flex-direction: row;
  gap: 16px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.settingsModalOverlay .meetingOptionsRow .meetingOption {
  flex: 1 1 0;
}
.settingsModalOverlay .meetingOption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.settingsModalOverlay .optionLabel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}
.settingsModalOverlay .optionIcon {
  width: 20px;
  height: 20px;
}
.settingsModalOverlay .toggleSwitch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.settingsModalOverlay .toggleSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.settingsModalOverlay .toggleSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}
.settingsModalOverlay .toggleSlider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}
.settingsModalOverlay .toggleSwitch input:checked + .toggleSlider {
  background-color: #3b82f6;
}
.settingsModalOverlay .toggleSwitch input:checked + .toggleSlider:before {
  transform: translateX(20px);
}
.settingsModalOverlay .settingsFooter {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 32px 24px;
  border-top: 1px solid #e5e7eb;
}
.settingsModalOverlay .settingsCancelButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  height: 44px;
  background-color: #FFFFFF;
  color: #0B182E;
  border: 2px solid #0B182E;
  border-radius: 32px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.settingsModalOverlay .settingsCancelButton:hover {
  background-color: #E8EDF5;
}
.settingsModalOverlay .settingsCancelButton:active {
  background-color: #D1DAEB;
}
.settingsModalOverlay .settingsCancelButton:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
.settingsModalOverlay .settingsSaveButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  height: 44px;
  background-color: #183260;
  color: #FFFFFF;
  border: none;
  border-radius: 32px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(24, 50, 96, 0.25);
}
.settingsModalOverlay .settingsSaveButton:hover {
  background-color: #1E3F78;
  box-shadow: 0 6px 16px rgba(24, 50, 96, 0.35);
}
.settingsModalOverlay .settingsSaveButton:active {
  background-color: #244C91;
  box-shadow: 0 2px 8px rgba(24, 50, 96, 0.25);
}
.settingsModalOverlay .settingsSaveButton:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .settingsModalOverlay .settingsModal {
    width: 95%;
    max-height: 95vh;
  }
  .settingsModalOverlay .settingsContent {
    flex-direction: column;
  }
  .settingsModalOverlay .settingsSidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .settingsModalOverlay .sidebarTab {
    white-space: nowrap;
    padding: 8px 16px;
    border-right: none;
    border-bottom: 3px solid transparent;
  }
  .settingsModalOverlay .sidebarTab.active {
    border-right: none;
    border-bottom: 3px solid #3b82f6;
  }
  .settingsModalOverlay .settingsMainContent {
    padding: 16px 20px;
  }
  .settingsModalOverlay .devicesLayout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "left" "right" "footer";
  }
  .settingsModalOverlay .settingsFooter {
    padding: 16px 20px;
  }
}
.settingsModalOverlay .profileContent {
  padding: 24px;
  max-width: 600px;
}
.settingsModalOverlay .profileSection {
  margin-bottom: 32px;
}
.settingsModalOverlay .profileSection:last-child {
  margin-bottom: 0;
}
.settingsModalOverlay .profileSectionTitle {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 20px 0;
}
.settingsModalOverlay .profileField {
  margin-bottom: 20px;
}
.settingsModalOverlay .profileField:last-child {
  margin-bottom: 0;
}
.settingsModalOverlay .profileFieldLabel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}
.settingsModalOverlay .profileInfoIcon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.settingsModalOverlay .profileInfoIcon img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}
.settingsModalOverlay .profileInfoIcon:hover img {
  opacity: 1;
}
.settingsModalOverlay .profileInputGroup {
  position: relative;
  display: flex;
  align-items: center;
}
.settingsModalOverlay .profileInput {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.settingsModalOverlay .profileInput:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.settingsModalOverlay .profileInput::placeholder {
  color: #9ca3af;
}
.settingsModalOverlay .profileInput:disabled, .settingsModalOverlay .profileInput[readonly] {
  background-color: #f3f4f6;
  color: #4b5563;
  cursor: not-allowed;
  border-color: #e5e7eb;
}
.settingsModalOverlay .profileInput:disabled:focus, .settingsModalOverlay .profileInput[readonly]:focus {
  border-color: #e5e7eb;
  box-shadow: none;
}
.settingsModalOverlay .profileInputIcon {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.settingsModalOverlay .profileInputIcon:hover {
  background-color: #f3f4f6;
}
.settingsModalOverlay .profileInputIcon img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}
.settingsModalOverlay .profileInputIcon:hover img {
  opacity: 1;
}
.settingsModalOverlay .currentPlanCard {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}
.settingsModalOverlay .planName {
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 20px;
}
.settingsModalOverlay .planDetails {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.settingsModalOverlay .planDetail {
  display: flex;
  align-items: center;
  gap: 8px;
}
.settingsModalOverlay .planDetailIcon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}
.settingsModalOverlay .planDetailLabel {
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}
.settingsModalOverlay .planDetailValue {
  font-size: 14px;
  color: #111827;
  font-weight: 600;
}
.settingsModalOverlay .supportedFeatures {
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}
.settingsModalOverlay .featuresTitle {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 16px 0;
}
.settingsModalOverlay .featuresList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.settingsModalOverlay .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
}
.settingsModalOverlay .featureIcon {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .settingsModalOverlay .profileContent {
    padding: 16px;
  }
  .settingsModalOverlay .featuresList {
    grid-template-columns: 1fr;
  }
  .settingsModalOverlay .planDetails {
    gap: 8px;
  }
  .settingsModalOverlay .currentPlanCard {
    padding: 16px;
  }
}
.settingsModalOverlay .calendarContent {
  padding: 24px;
  max-width: 600px;
}
.settingsModalOverlay .calendarSection {
  margin-bottom: 32px;
}
.settingsModalOverlay .calendarSection:last-child {
  margin-bottom: 0;
}
.settingsModalOverlay .calendarSectionTitle {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px 0;
}
.settingsModalOverlay .calendarDescription {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0 0 32px 0;
}
.settingsModalOverlay .calendarProviders {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.settingsModalOverlay .calendarProvider {
  width: 100%;
}
.settingsModalOverlay .calendarSignInButton {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.settingsModalOverlay .calendarSignInButton:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}
.settingsModalOverlay .calendarSignInButton.googleButton {
  color: #374151;
}
.settingsModalOverlay .calendarSignInButton.googleButton:hover {
  border-color: #4285f4;
  background: rgba(66, 133, 244, 0.05);
}
.settingsModalOverlay .calendarSignInButton.microsoftButton {
  color: #374151;
}
.settingsModalOverlay .calendarSignInButton.microsoftButton:hover {
  border-color: #0078d4;
  background: rgba(0, 120, 212, 0.05);
}
.settingsModalOverlay .calendarProviderIcon {
  width: 20px;
  height: 20px;
}
.settingsModalOverlay .calendarConnected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 2px solid #72C882;
  border-radius: 8px;
  background: #DCF1E0;
}
.settingsModalOverlay .connectedInfo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.settingsModalOverlay .connectedDetails {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.settingsModalOverlay .connectedLabel {
  font-size: 14px;
  font-weight: 600;
  color: #066A18;
}
.settingsModalOverlay .connectedEmail {
  font-size: 12px;
  color: #07841E;
}
.settingsModalOverlay .disconnectButton {
  background: none;
  border: 1px solid #D74F59;
  color: #A60712;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.settingsModalOverlay .disconnectButton:hover {
  background: #F7DCDE;
  border-color: #CF2B37;
  color: #85050F;
}
@media (max-width: 768px) {
  .settingsModalOverlay .calendarContent {
    padding: 16px;
  }
  .settingsModalOverlay .calendarConnected {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .settingsModalOverlay .connectedInfo {
    width: 100%;
  }
  .settingsModalOverlay .disconnectButton {
    align-self: flex-end;
  }
}
.settingsModalOverlay .meetingsContent {
  padding: 24px;
  max-width: 600px;
}
.settingsModalOverlay .meetingsSection {
  margin-bottom: 32px;
}
.settingsModalOverlay .meetingsSection:last-child {
  margin-bottom: 0;
}
.settingsModalOverlay .meetingsSectionTitle {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 24px 0;
}
.settingsModalOverlay .meetingOptions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.settingsModalOverlay .meetingOption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid #e5e7eb;
  background: #FFFFFF;
  transition: background-color 0.2s;
  border-radius: 8px;
}
.settingsModalOverlay .meetingOption:hover {
  background: #f9fafb;
}
.settingsModalOverlay .meetingOptionContent {
  flex: 1;
}
.settingsModalOverlay .meetingOptionLabel {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}
.settingsModalOverlay .toggleSwitch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  cursor: pointer;
}
.settingsModalOverlay .toggleSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.settingsModalOverlay .toggleSlider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  border-radius: 24px;
  transition: background-color 0.3s;
}
.settingsModalOverlay .toggleSlider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s;
}
.settingsModalOverlay input:checked + .toggleSlider {
  background-color: #3b82f6;
}
.settingsModalOverlay input:checked + .toggleSlider:before {
  transform: translateX(24px);
}
.settingsModalOverlay input:focus + .toggleSlider {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
@media (max-width: 768px) {
  .settingsModalOverlay .meetingsContent {
    padding: 16px;
  }
  .settingsModalOverlay .meetingOption {
    padding: 16px 20px;
  }
  .settingsModalOverlay .meetingOptionLabel {
    font-size: 13px;
  }
  .settingsModalOverlay .toggleSwitch {
    width: 44px;
    height: 22px;
  }
  .settingsModalOverlay .toggleSlider:before {
    height: 18px;
    width: 18px;
  }
  .settingsModalOverlay input:checked + .toggleSlider:before {
    transform: translateX(22px);
  }
}
.settingsModalOverlay .termsContent {
  padding: 24px;
  max-width: 600px;
}
.settingsModalOverlay .termsSection {
  margin-bottom: 32px;
}
.settingsModalOverlay .termsSection:last-child {
  margin-bottom: 0;
}
.settingsModalOverlay .termsSectionTitle {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 24px 0;
}
.settingsModalOverlay .termsDescription {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.settingsModalOverlay .termsInfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.settingsModalOverlay .termsLastAccepted {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}
.settingsModalOverlay .termsReadButton {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: none;
  border: 1px solid #3b82f6;
  border-radius: 8px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
  text-decoration: none;
}
.settingsModalOverlay .termsReadButton:hover {
  background: #eff6ff;
  border-color: #2563eb;
  color: #1d4ed8;
}
.settingsModalOverlay .termsReadButton:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.settingsModalOverlay .termsIcon {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}
.settingsModalOverlay .termsCheckboxContainer {
  margin-top: 8px;
}
.settingsModalOverlay .termsCheckboxHint {
  font-size: 12px;
  color: #6b7280;
  margin: 8px 0 0 36px;
  font-style: italic;
  line-height: 1.4;
}
.settingsModalOverlay .termsCheckboxLabel {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-left: 36px;
}
.settingsModalOverlay .termsCheckboxLabel .termsCheckbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.settingsModalOverlay .termsCheckboxLabel .termsCheckbox:checked ~ .checkboxCustom {
  background-color: #244C91;
  border-color: #244C91;
}
.settingsModalOverlay .termsCheckboxLabel .termsCheckbox:checked ~ .checkboxCustom::after {
  display: block;
}
.settingsModalOverlay .termsCheckboxLabel .termsCheckbox:disabled {
  cursor: not-allowed;
}
.settingsModalOverlay .termsCheckboxLabel .termsCheckbox:disabled ~ .checkboxCustom {
  opacity: 0.6;
  cursor: not-allowed;
}
.settingsModalOverlay .termsCheckboxLabel .termsCheckbox:disabled ~ .checkboxText {
  opacity: 0.6;
  cursor: not-allowed;
}
.settingsModalOverlay .termsCheckboxLabel .checkboxCustom {
  position: absolute;
  left: 0;
  top: 2px;
  height: 24px;
  width: 24px;
  background-color: #FFFFFF;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  transition: all 0.2s;
}
.settingsModalOverlay .termsCheckboxLabel .checkboxCustom::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.settingsModalOverlay .termsCheckboxLabel .checkboxText {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  user-select: none;
}
.settingsModalOverlay .termsCheckboxLabel .checkboxText .termsLink {
  color: #244C91;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.settingsModalOverlay .termsCheckboxLabel .checkboxText .termsLink:hover {
  color: #183260;
  border-bottom-color: #183260;
}
.settingsModalOverlay .termsCheckboxLabel .checkboxText .termsLink:focus {
  outline: 2px solid #244C91;
  outline-offset: 2px;
  border-radius: 2px;
}
.settingsModalOverlay .termsCheckboxLabel:hover .checkboxCustom:not(:disabled) {
  border-color: #244C91;
}
@media (max-width: 768px) {
  .settingsModalOverlay .termsContent {
    padding: 16px;
  }
  .settingsModalOverlay .termsReadButton {
    padding: 12px 16px;
    font-size: 13px;
  }
  .settingsModalOverlay .termsReadButton .termsIcon {
    width: 16px;
    height: 16px;
  }
}

.backendStatus {
  margin-bottom: 16px;
}
.backendStatus .statusIndicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.backendStatus .statusIndicator img {
  width: 16px;
  height: 16px;
}
.backendStatus .statusIndicator.connected {
  background: #DCF1E0;
  color: #066A18;
  border: 1px solid #72C882;
}

.profileError {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: #F7DCDE;
  color: #85050F;
  border: 1px solid #DF727A;
  font-size: 13px;
}
.profileError img {
  width: 16px;
  height: 16px;
}

.currentPlanCard.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.currentPlanCard.loading .planLoadingMessage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #4b5563;
  font-size: 14px;
}
.currentPlanCard.loading .planLoadingMessage .loadingSpinner {
  width: 24px;
  height: 24px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #244C91;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.currentPlanCard.loading .planLoadingMessage img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.profileInput.error,
.settingsInput.error {
  border-color: #C70816 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
.profileInput.error:focus,
.settingsInput.error:focus {
  border-color: #A60712 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

.fieldError {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 12px;
  color: #A60712;
}
.fieldError::before {
  content: "⚠";
  font-size: 10px;
}

.settingsFooter {
  flex-direction: column;
  gap: 12px;
}
.settingsFooter .statusMessage {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.settingsFooter .statusMessage img {
  width: 16px;
  height: 16px;
}
.settingsFooter .statusMessage.success {
  background: #DCF1E0;
  color: #066A18;
  border: 1px solid #72C882;
}
.settingsFooter .statusMessage.error {
  background: #F7DCDE;
  color: #85050F;
  border: 1px solid #DF727A;
}
.settingsFooter .statusMessage.warning {
  background: #FEF6DB;
  color: #A77E00;
  border: 1px solid #FDD96D;
}
.settingsFooter .footerActions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.settingsResetButton {
  padding: 10px 20px;
  background: transparent;
  color: #4b5563;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.settingsResetButton:hover:not(:disabled) {
  background: #f9fafb;
  color: #374151;
  border-color: #9ca3af;
}
.settingsResetButton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.settingsSaveButton {
  position: relative;
}
.settingsSaveButton.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.settingsSaveButton .saveSpinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.confirmModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}
.confirmModal .confirmContent {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.confirmModal .confirmContent h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
.confirmModal .confirmContent p {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
}
.confirmModal .confirmContent .confirmActions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.confirmModal .confirmContent .confirmActions .confirmCancel {
  padding: 8px 16px;
  background: transparent;
  color: #4b5563;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.confirmModal .confirmContent .confirmActions .confirmCancel:hover {
  background: #f9fafb;
  color: #374151;
}
.confirmModal .confirmContent .confirmActions .confirmReset {
  padding: 8px 16px;
  background: #C70816;
  color: #FFFFFF;
  border: 1px solid #C70816;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.confirmModal .confirmContent .confirmActions .confirmReset:hover:not(:disabled) {
  background: #A60712;
  border-color: #A60712;
}
.confirmModal .confirmContent .confirmActions .confirmReset:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.profileInputGroup {
  position: relative;
}
.profileInputGroup .profileInput {
  transition: all 0.2s ease;
}
.profileInputGroup .profileInput:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.profileInputGroup .profileInput.error:focus {
  border-color: #C70816;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.toggleSwitch input:focus + .toggleSlider {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.calendarConnected .connectedInfo .connectedEmail {
  font-size: 12px;
  color: #07841E;
  font-weight: 500;
}
.calendarConnected .disconnectButton:hover {
  background: #F7DCDE;
  color: #A60712;
  border-color: #D74F59;
}

.settingsTabContent {
  position: relative;
}
.settingsTabContent.loading {
  opacity: 0.6;
  pointer-events: none;
}
.settingsTabContent.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .settingsFooter .footerActions {
    flex-direction: column;
    gap: 8px;
  }
  .settingsFooter .footerActions button {
    width: 100%;
  }
  .confirmModal .confirmContent {
    margin: 16px;
  }
  .confirmModal .confirmContent .confirmActions {
    flex-direction: column;
  }
  .confirmModal .confirmContent .confirmActions button {
    width: 100%;
  }
}
@media (prefers-color-scheme: dark) {
  .confirmModal .confirmContent {
    background: #1a1a1a;
    color: #ffffff;
  }
  .confirmModal .confirmContent h3 {
    color: #ffffff;
  }
  .confirmModal .confirmContent p {
    color: #aaaaaa;
  }
  .statusMessage.success {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.3);
  }
  .statusMessage.error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
  }
  .statusMessage.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.3);
  }
}
.settingsModal:focus-within .settingsSaveButton:focus,
.settingsModal:focus-within .settingsCancelButton:focus,
.settingsModal:focus-within .settingsResetButton:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.statusMessage {
  animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.personal-meetings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.personal-meetings-modal__dialog {
  background: #FFFFFF;
  border-radius: 12px;
  width: 95%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  will-change: transform, opacity;
  contain: layout style paint;
  height: 716px;
}
.personal-meetings-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 16px;
  border-bottom: 1px solid #e5e7eb;
  height: 72px;
}
.personal-meetings-modal__title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0 !important;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 20px !important;
  line-height: 125% !important;
  letter-spacing: 0.15px;
  color: #001221 !important;
}
.personal-meetings-modal__title-count {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  background-color: #F2F2F3;
  padding: 2px 6px;
  border-radius: 50px;
}
.personal-meetings-modal__header-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.personal-meetings-modal__header-close:hover {
  background-color: #f3f4f6;
}
.personal-meetings-modal__header-close img {
  width: 14px;
  height: 14px;
}
.personal-meetings-modal__layout {
  display: flex;
  flex: 1;
  min-height: 644px;
}
.personal-meetings-modal__sidebar {
  width: 320px;
  border-right: 1px solid #e5e7eb;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.personal-meetings-modal__sidebar-actions {
  margin: 0 16px;
}
.personal-meetings-modal__add-button {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid #A3B6D7;
  border-radius: 8px;
  color: #244C91;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.25px;
  vertical-align: middle;
  text-transform: uppercase;
}
.personal-meetings-modal__add-button:hover:not(:disabled) {
  background-color: #f3f4f6;
}
.personal-meetings-modal__add-button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f3f4f6;
  color: #9ca3af;
}
.personal-meetings-modal__add-button--disabled:hover {
  background-color: #f3f4f6;
  color: #9ca3af;
}
.personal-meetings-modal__meeting-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-top: 1px solid #E5E6E8;
}
.personal-meetings-modal__meeting-list::-webkit-scrollbar {
  display: none;
}
.personal-meetings-modal__meeting-section {
  display: flex;
  flex-direction: column;
}
.personal-meetings-modal__empty {
  padding: 16px;
  text-align: center;
  color: #4b5563;
  font-size: 14px;
  margin: 16px;
}
.personal-meetings-modal__empty p {
  margin: 0;
}
.personal-meetings-modal__meeting-item {
  display: flex;
  height: 85px;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
  border: none;
  border-bottom: 1px solid #E5E6E8;
  background: none;
  text-align: left;
}
.personal-meetings-modal__meeting-item:hover {
  background-color: #f9fafb;
}
.personal-meetings-modal__meeting-item--selected {
  background-color: rgba(36, 76, 145, 0.04);
  border-right: 2px solid #158FCF;
}
.personal-meetings-modal__meeting-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
}
.personal-meetings-modal__meeting-item-title {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.25px;
  vertical-align: middle;
  color: #001221;
}
.personal-meetings-modal__meeting-url {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  color: #4C5863;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.personal-meetings-modal__meeting-badge {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1.4px;
  vertical-align: middle;
  color: #244C91;
  background-color: #D1DAEB;
  padding: 3px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 4px;
}
.personal-meetings-modal__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.personal-meetings-modal__tabs {
  display: flex;
  padding: 0 20px;
}
.personal-meetings-modal__tab {
  background: none;
  border: none;
  padding: 16px 24px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}
.personal-meetings-modal__tab:hover {
  color: #244C91;
  background-color: rgba(36, 76, 145, 0.04);
}
.personal-meetings-modal__tab--active {
  color: #244C91;
  border-bottom-color: #244C91;
  background-color: white;
}
.personal-meetings-modal__tab-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}
.personal-meetings-modal__tab-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.personal-meetings-modal__updating-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 0 12px;
}
.personal-meetings-modal__updating-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid #e5e7eb;
  border-top-color: #244C91;
  border-radius: 50%;
  animation: updating-spin 0.8s linear infinite;
}
.personal-meetings-modal__updating-text {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
}
.personal-meetings-modal__empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
  color: #4b5563;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  padding: 24px;
  height: 100%;
}
.personal-meetings-modal__form-box {
  padding: 16px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}
.personal-meetings-modal__form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.personal-meetings-modal__form-field--row {
  flex-direction: row;
  gap: 16px;
}
.personal-meetings-modal__form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.personal-meetings-modal__field-label {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.personal-meetings-modal__field-input {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 12px 16px;
  border: 1px solid #CCCFD2;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 14px;
  color: #374151;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.personal-meetings-modal__field-input:focus {
  border: 1px solid #244C91;
  outline: none;
}
.personal-meetings-modal__field-input--readonly {
  background-color: #f9fafb;
  color: #6b7280;
}
.personal-meetings-modal__lobby-msg {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 12px 16px;
  border: 1px solid #CCCFD2;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 14px;
  color: #374151;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  min-height: 80px;
  max-height: 150px;
  width: 100%;
}
.personal-meetings-modal__lobby-msg:focus {
  border: 1px solid #244C91;
  outline: none;
}
.personal-meetings-modal__lobby-msg-counter {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #192936;
  padding-left: 5px;
}
.personal-meetings-modal__default-meeting {
  display: flex;
  align-items: center;
  gap: 10px;
}
.personal-meetings-modal__default-meeting-text {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.personal-meetings-modal__default-meeting-text h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #001221;
  margin: 0;
}
.personal-meetings-modal__default-meeting-text p {
  margin: 4px 0 0 0;
  font-size: 12px;
  color: #4b5563;
}
.personal-meetings-modal__toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.personal-meetings-modal__toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.personal-meetings-modal__toggle-switch input:checked + .personal-meetings-modal__toggle-slider {
  background-color: #244C91;
}
.personal-meetings-modal__toggle-switch input:checked + .personal-meetings-modal__toggle-slider:before {
  transform: translateX(20px);
}
.personal-meetings-modal__toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.3s;
  border-radius: 24px;
}
.personal-meetings-modal__toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}
.personal-meetings-modal__security-box {
  border: 1px solid #E5E6E8;
  padding: 16px 24px;
  border-radius: 6px;
}
.personal-meetings-modal__option-label {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #374151;
  display: block;
  margin-bottom: 10px;
}
.personal-meetings-modal__security-section {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.personal-meetings-modal__radio-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
}
.personal-meetings-modal__radio-option--organization {
  margin-top: 8px;
}
.personal-meetings-modal__radio-option--disabled .personal-meetings-modal__radio-input {
  cursor: not-allowed;
}
.personal-meetings-modal__radio-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #244C91;
}
.personal-meetings-modal__radio-label {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #001221;
  font-size: 14px;
  line-height: 20px;
  flex: 1;
}
.personal-meetings-modal__radio-label--main {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.25px;
}
.personal-meetings-modal__radio-label--gray {
  color: #99A0A6;
}
.personal-meetings-modal__sub-section {
  margin-left: 28px;
  margin-top: 8px;
}
.personal-meetings-modal__sub-title {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin-bottom: 8px;
  color: #001221;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}
.personal-meetings-modal__paid-badge {
  background: linear-gradient(90deg, rgba(180, 10, 131, 0.7) 0%, #490AC4 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-left: 6px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 100%;
  vertical-align: middle;
  display: inline-block;
  margin-top: 6px;
}
.personal-meetings-modal__cohost-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.personal-meetings-modal__cohost-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.personal-meetings-modal__cohost-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  width: 100%;
}
.personal-meetings-modal__cohost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14px;
}
.personal-meetings-modal__cohost-item:last-child {
  margin-bottom: 0;
}
.personal-meetings-modal__cohost-remove {
  background: none;
  border: none;
  color: #A60712;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.personal-meetings-modal__cohost-remove:hover {
  background-color: #F7DCDE;
}
.personal-meetings-modal__cohost-form {
  width: 80%;
  margin-top: 10px;
}
.personal-meetings-modal__cohost-input-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.personal-meetings-modal__cohost-input-box input {
  flex: 1;
}
.personal-meetings-modal__cohost-add {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.25px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #244C91;
  background-color: #E8EDF5;
  border: none;
  border-radius: 6px;
  padding: 10px 40px;
  height: 40px;
  cursor: pointer;
}
.personal-meetings-modal__cohost-add:hover:not(:disabled) {
  background-color: rgb(214.2272727273, 223.0909090909, 237.2727272727);
}
.personal-meetings-modal__cohost-add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.personal-meetings-modal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 32px 24px;
}
.personal-meetings-modal__footer-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.personal-meetings-modal__footer-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid;
}
.personal-meetings-modal__footer-button--close {
  background: none;
  border-color: transparent;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #183260;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
.personal-meetings-modal__footer-button--close:hover {
  background-color: #f3f4f6;
  border-color: #9ca3af;
  color: #112547;
}
.personal-meetings-modal__footer-button--delete {
  background-color: #A60712;
  border-color: #A60712;
  color: #FFFFFF;
  position: absolute;
  top: 15px;
}
.personal-meetings-modal__footer-button--delete:hover:not(:disabled) {
  background-color: #85050F;
  border-color: #85050F;
}
.personal-meetings-modal__footer-button--delete:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.personal-meetings-modal__status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.personal-meetings-modal__status--error {
  background-color: #F7DCDE;
  color: #85050F;
  border: 1px solid #DF727A;
}
.personal-meetings-modal__status--error img {
  width: 16px;
  height: 16px;
}
.personal-meetings-modal__status--loading {
  background-color: #f3f4f6;
  color: #374151;
}
.personal-meetings-modal__confirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}
.personal-meetings-modal__confirm-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.personal-meetings-modal__confirm-content h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: #374151;
}
.personal-meetings-modal__confirm-content p {
  margin: 0 0 24px 0;
  color: #4b5563;
  line-height: 1.5;
}
.personal-meetings-modal__confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.personal-meetings-modal__confirm-cancel {
  background: none;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.personal-meetings-modal__confirm-cancel:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.personal-meetings-modal__confirm-cancel:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.personal-meetings-modal__confirm-delete {
  background-color: #A60712;
  border: 1px solid #A60712;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.personal-meetings-modal__confirm-delete:hover:not(:disabled) {
  background-color: #85050F;
  border-color: #85050F;
}
.personal-meetings-modal__confirm-delete:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .personal-meetings-modal__dialog {
    width: 95%;
    max-height: 95vh;
  }
  .personal-meetings-modal__layout {
    flex-direction: column;
  }
  .personal-meetings-modal__sidebar {
    width: 100%;
    max-height: 300px;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .personal-meetings-modal__tabs {
    overflow-x: auto;
  }
  .personal-meetings-modal__tab {
    white-space: nowrap;
    min-width: 120px;
  }
  .personal-meetings-modal__tab-wrapper {
    padding: 16px 20px;
  }
  .personal-meetings-modal__footer {
    padding: 16px 20px;
    flex-wrap: wrap;
  }
}

.host-controls-page {
  min-height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 24px;
}
.host-controls-page__container {
  background: #FFFFFF;
  border-radius: 12px;
  width: 100%;
  max-width: 720px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.host-controls-page__header {
  padding: 24px 32px;
  border-bottom: 1px solid #e5e7eb;
}
.host-controls-page__header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.host-controls-page__title {
  margin: 0 0 4px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.15px;
  color: #001221;
}
.host-controls-page__subtitle {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
}
.host-controls-page__content {
  padding: 0;
}
.host-controls-page__content.personal-meetings-modal {
  position: static;
  background-color: transparent;
  z-index: auto;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  display: block;
  min-height: auto;
  justify-content: initial;
  align-items: initial;
}
.host-controls-page__content .personal-meetings-modal__tabs {
  display: flex;
  padding: 0 32px;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
}
.host-controls-page__content .personal-meetings-modal__tab {
  background: none;
  border: none;
  padding: 16px 24px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  margin-bottom: -1px;
}
.host-controls-page__content .personal-meetings-modal__tab:hover {
  color: #244C91;
  background-color: rgba(36, 76, 145, 0.04);
}
.host-controls-page__content .personal-meetings-modal__tab--active {
  color: #244C91;
  border-bottom-color: #244C91;
  background-color: transparent;
}
.host-controls-page__content .personal-meetings-modal__tab-wrapper {
  padding: 24px 32px 32px;
  overflow: visible;
}
.host-controls-page__content .personal-meetings-modal__tab-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.host-controls-page__content .personal-meetings-modal__form-field--row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.host-controls-page__content .personal-meetings-modal__form-field--row .personal-meetings-modal__form-group {
  flex: 1;
}
.host-controls-page__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  color: #6b7280;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
}
.host-controls-page__loading::before {
  content: "";
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: #244C91;
  border-radius: 50%;
  animation: host-controls-spin 0.8s linear infinite;
  margin-bottom: 16px;
}
.host-controls-page__error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
}
.host-controls-page__error-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  filter: invert(27%) sepia(98%) saturate(3419%) hue-rotate(349deg) brightness(98%) contrast(93%);
  opacity: 1;
}
.host-controls-page__error-title {
  margin: 0 0 8px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #001221;
}
.host-controls-page__error-message {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

@keyframes host-controls-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes updating-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .host-controls-page {
    padding: 24px 16px;
  }
  .host-controls-page__container {
    max-width: 100%;
  }
  .host-controls-page__header {
    padding: 20px 24px;
  }
  .host-controls-page__title {
    font-size: 18px;
  }
  .host-controls-page__content {
    padding: 20px 24px 24px;
  }
}
.editable-input {
  width: 100%;
}
.editable-input__label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #001221;
}
.editable-input__label-text {
  font-size: 14px;
}
.editable-input__container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 4px;
  transition: border 0.2s ease, background-color 0.2s ease;
  height: 40px;
  border: 1px solid #E5E6E8;
  background-color: #F2F2F3;
}
.editable-input__container--editing {
  background-color: #FFFFFF;
}
.editable-input__container--validating {
  border-color: #FBBD00;
}
.editable-input__container--success {
  border-color: #099F24;
}
.editable-input__container--error {
  border-color: #C70816;
}
.editable-input__field {
  width: 100%;
  padding: 10px 16px;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 14px;
  color: #001221;
}
.editable-input__field::placeholder {
  color: #99A0A6;
}
.editable-input__field:disabled {
  cursor: not-allowed;
  color: #99A0A6;
}
.editable-input__validation-spinner {
  margin-right: 8px;
  color: #FBBD00;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.editable-input__actions {
  display: flex;
  height: 100%;
  flex-shrink: 0;
}
.editable-input__action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.editable-input__action:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}
.editable-input__action:active:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.1);
}
.editable-input__action:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.editable-input__action:focus-visible {
  outline: 2px solid #099F24;
  outline-offset: -2px;
}
.editable-input__action--save svg path {
  fill: #099F24;
}
.editable-input__action--cancel svg path {
  fill: #4C5863;
}
.editable-input__action--edit svg path {
  fill: #4C5863;
}
.editable-input__validation-info {
  margin-top: 4px;
  font-size: 12px;
  color: #7F888F;
}
.editable-input__error {
  margin-top: 4px;
  font-size: 12px;
  color: #C70816;
}
.editable-input--disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Schedule Meeting Modal Styles */
.schedule-meeting-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
}

.schedule-meeting-modal {
  display: flex;
  width: 620px;
  max-width: 100%;
  max-height: 90vh;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 24px 38px 0 rgba(80, 96, 111, 0.14), 0 9px 46px 0 rgba(80, 96, 111, 0.12), 0 11px 15px 0 rgba(80, 96, 111, 0.2);
  overflow: hidden;
}
.schedule-meeting-modal__header {
  display: flex;
  height: 64px;
  padding: 20px 24px 0 24px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  background: #FFFFFF;
}
.schedule-meeting-modal__title {
  color: #001221;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.schedule-meeting-modal__close-button {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.schedule-meeting-modal__close-button:hover {
  background: #F2F2F3;
}
.schedule-meeting-modal__close-icon {
  fill: #4C5863;
}
.schedule-meeting-modal__divider {
  width: 100%;
  height: 1px;
  background: #E5E6E8;
}
.schedule-meeting-modal__content {
  display: flex;
  flex-direction: column;
  height: calc(60vh + 77px);
  width: 100%;
}
.schedule-meeting-modal__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.schedule-meeting-modal__allocation-error {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: auto;
}
.schedule-meeting-modal__body {
  display: flex;
  width: 100%;
  padding: 16px 24px;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  height: 60vh;
}
.schedule-meeting-modal__body--loading {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.schedule-meeting-modal__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-top: 1px solid #E5E6E8;
  background: #FFFFFF;
  padding: 16px 24px;
}
.schedule-meeting-modal__error-box {
  width: 100%;
}
.schedule-meeting-modal__error-box pre {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.schedule-meeting-modal__error-banner {
  margin-top: 16px;
  padding: 12px 16px;
  background: #F7DCDE;
  border-top: 1px solid #DF727A;
  border-bottom: 1px solid #DF727A;
  color: #85050F;
  font-size: 14px;
}
.schedule-meeting-modal__error-banner strong {
  font-weight: 600;
}
.schedule-meeting-modal__button {
  display: inline-flex;
  height: 44px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  transition: all 0.2s ease;
  letter-spacing: normal;
}
.schedule-meeting-modal__button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.schedule-meeting-modal__button:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
.schedule-meeting-modal__button--secondary {
  background-color: #FFFFFF;
  color: #0B182E;
  border: 2px solid #0B182E;
}
.schedule-meeting-modal__button--secondary:hover:not(:disabled) {
  background-color: #E8EDF5;
}
.schedule-meeting-modal__button--secondary:active:not(:disabled) {
  background-color: #D1DAEB;
}
.schedule-meeting-modal__button--primary {
  background-color: #183260;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(24, 50, 96, 0.25);
}
.schedule-meeting-modal__button--primary:hover:not(:disabled) {
  background-color: #1E3F78;
  box-shadow: 0 6px 16px rgba(24, 50, 96, 0.35);
}
.schedule-meeting-modal__button--primary:active:not(:disabled) {
  background-color: #244C91;
  box-shadow: 0 2px 8px rgba(24, 50, 96, 0.25);
}
.schedule-meeting-modal__error-message {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #C70816;
  font-weight: 500;
}
.schedule-meeting-modal__form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  margin-bottom: 16px;
}
.schedule-meeting-modal__input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.schedule-meeting-modal__input-label {
  color: #192936;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.schedule-meeting-modal__input-field {
  display: flex;
  height: 44px;
  padding: 8px 12px 8px 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #CCCFD2;
  background: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #001221;
  outline: none;
}
.schedule-meeting-modal__input-field::placeholder {
  color: #7F888F;
}
.schedule-meeting-modal__input-field:focus {
  border-color: #244C91;
}
.schedule-meeting-modal__datetime-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.schedule-meeting-modal__pill-box {
  display: flex;
  gap: 5px;
}
.schedule-meeting-modal__pill {
  display: flex;
  height: 32px;
  padding: 4px 8px;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  border: 1px solid #E5E6E8;
  background: #FFFFFF;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #001221;
}
.schedule-meeting-modal__pill:hover {
  background: #f8f9fa;
}
.schedule-meeting-modal__pill--recurrence {
  width: 138px;
  position: relative !important;
  justify-content: space-between;
  z-index: 10;
}
.schedule-meeting-modal__recurrence-icon {
  fill: #7F888F;
}
.schedule-meeting-modal__date-input, .schedule-meeting-modal__time-input {
  border: 0px;
  background: transparent;
  max-width: 120px;
}
.schedule-meeting-modal__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #E5E6E8;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(20, 30, 50, 0.08);
  z-index: 50;
  min-width: 160px;
  overflow: hidden;
}
.schedule-meeting-modal__dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #001221;
}
.schedule-meeting-modal__dropdown-item:hover {
  background: #f3f4f6;
}
.schedule-meeting-modal__datetime-separator {
  color: #192936;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 0 4px;
}
.schedule-meeting-modal__color-picker-section {
  margin: 20px 0;
}
.schedule-meeting-modal__color-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.schedule-meeting-modal__color-label {
  cursor: pointer;
}
.schedule-meeting-modal__visually-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}
.schedule-meeting-modal__color-option {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}
.schedule-meeting-modal__color-option--selected {
  border-color: #111827 !important;
}
.schedule-meeting-modal__color-option--black {
  background: #FFFFFF;
  border-color: #B2B7BC;
}
.schedule-meeting-modal__color-option--yellow {
  background: #FEF6DB;
}
.schedule-meeting-modal__color-option--green {
  background: #DCF1E0;
}
.schedule-meeting-modal__color-option--gray {
  background: #F2F2F3;
}
.schedule-meeting-modal__color-option--blue-light {
  background: #E8EDF5;
}
.schedule-meeting-modal__color-option--cyan {
  background: #C3EAFF;
}
.schedule-meeting-modal__color-option--purple {
  background: rgba(235, 214, 232, 0.4);
}
.schedule-meeting-modal__color-option--pink {
  background: #F7DCDE;
}
.schedule-meeting-modal__color-option--blue {
  background: #D1DAEB;
}
.schedule-meeting-modal__color-option--gray-dark {
  background: #e0e0e0;
}
.schedule-meeting-modal__security-section {
  margin: 20px 0;
}
.schedule-meeting-modal__radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-meeting-modal__radio-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
}
.schedule-meeting-modal__radio-input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #244C91;
}
.schedule-meeting-modal__radio-label {
  color: #001221;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  flex: 1;
}
.schedule-meeting-modal__radio-label--bold {
  font-weight: 700;
}
.schedule-meeting-modal__radio-label--muted {
  color: #99A0A6;
}
.schedule-meeting-modal__radio-sublabel {
  margin-left: 28px;
  color: #99A0A6;
  font-size: 14px;
  line-height: 20px;
}
.schedule-meeting-modal__lobby-title {
  margin-bottom: 8px;
  color: #001221;
  font-size: 16px;
}
.schedule-meeting-modal__paid-badge {
  display: block;
  width: fit-content;
  padding: 4px 10px;
  background: linear-gradient(90deg, rgba(180, 10, 131, 0.7) 0%, #490AC4 100%);
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
  margin-left: 0;
  text-transform: uppercase;
  line-height: 100%;
}
.schedule-meeting-modal__paid-badge--hide {
  display: none;
}
.schedule-meeting-modal__join-section, .schedule-meeting-modal__calendar-section {
  margin: 20px 0;
}
.schedule-meeting-modal__join-link-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.schedule-meeting-modal__join-link {
  color: #244C91;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}
.schedule-meeting-modal__copy-button {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #E8EDF5;
  border: none;
  cursor: pointer;
  color: #244C91;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
.schedule-meeting-modal__copy-button:hover {
  background: #D1DAEB;
}
.schedule-meeting-modal__calendar-options {
  display: flex;
  gap: 40px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.schedule-meeting-modal__phone-section {
  margin: 20px 0;
}
.schedule-meeting-modal__phone-info {
  color: #001221;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 16px;
  margin: 6px 0;
}
.schedule-meeting-modal__phone-link {
  color: #244C91;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.schedule-meeting-modal__phone-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 640px) {
  .schedule-meeting-modal {
    width: 100%;
    max-width: 95vw;
    margin: 10px;
  }
  .schedule-meeting-modal__header {
    padding: 16px 20px 0 20px;
  }
  .schedule-meeting-modal__body {
    padding: 16px 20px;
  }
  .schedule-meeting-modal__footer {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
  }
  .schedule-meeting-modal__button {
    width: 100%;
  }
  .schedule-meeting-modal__datetime-container {
    flex-direction: column;
    align-items: stretch;
  }
  .schedule-meeting-modal__pill {
    justify-content: space-between;
  }
  .schedule-meeting-modal__date-input, .schedule-meeting-modal__time-input {
    min-width: 160px;
  }
  .schedule-meeting-modal__join-link-container {
    flex-direction: column;
    align-items: stretch;
  }
  .schedule-meeting-modal__calendar-options {
    flex-direction: column;
    gap: 16px;
  }
  .schedule-meeting-modal__color-grid {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .schedule-meeting-modal-overlay {
    padding: 10px;
  }
  .schedule-meeting-modal {
    max-height: 95vh;
  }
  .schedule-meeting-modal__title {
    font-size: 18px;
  }
  .schedule-meeting-modal__color-option {
    width: 30px;
    height: 30px;
  }
}
/* Meeting Invitation Card Styles */
.meeting-invitation-card__box {
  margin-bottom: 20px;
}
.meeting-invitation-card__title {
  color: #192936;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
  margin-bottom: 5px;
}
.meeting-invitation-card__text {
  color: #001221;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
}
.meeting-invitation-card__link {
  color: #244C91;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
  text-decoration: none;
}
.meeting-invitation-card__link:hover {
  text-decoration: underline;
}
.meeting-invitation-card__copy-button {
  border: none;
  background-color: transparent;
  color: #112547;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
.meeting-invitation-card__copy-button:hover {
  opacity: 0.8;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
  animation: modalFadeIn 0.2s ease-out;
}

.join-meeting-modal {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.2s ease-out;
}
.join-meeting-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.join-meeting-modal .modal-header .modal-title {
  margin: 0;
  font-size: 20px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #001221;
  line-height: 24px;
  text-decoration: none;
}
.join-meeting-modal .modal-header .modal-close-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  color: #6b7280;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-meeting-modal .modal-header .modal-close-button:hover {
  background: #f3f4f6;
  color: #374151;
}
.join-meeting-modal .modal-header .modal-close-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #3b82f6;
}
.join-meeting-modal .modal-header .modal-close-button .close-icon {
  width: 20px;
  height: 20px;
}
.join-meeting-modal .modal-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}
.join-meeting-modal .modal-content .form-group {
  margin-bottom: 24px;
}
.join-meeting-modal .modal-content .form-group:last-of-type {
  margin-bottom: 32px;
}
.join-meeting-modal .modal-content .form-label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #192936;
  position: relative;
}
.join-meeting-modal .modal-content .form-label .info-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}
.join-meeting-modal .modal-content .form-label .info-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  cursor: help;
  transition: opacity 0.2s ease;
}
.join-meeting-modal .modal-content .form-label .info-icon:hover {
  opacity: 1;
}
.join-meeting-modal .modal-content .form-label .info-icon:hover + .tooltip {
  opacity: 1;
  pointer-events: auto;
}
.join-meeting-modal .modal-content .form-label .tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 8px 12px;
  background: #F2F2F3;
  color: #33414D;
  font-size: 12px;
  font-weight: 400;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.join-meeting-modal .modal-content .form-label .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #F2F2F3;
}
.join-meeting-modal .modal-content .form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  color: #374151;
  background: #ffffff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.join-meeting-modal .modal-content .form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.join-meeting-modal .modal-content .form-input::placeholder {
  color: #9ca3af;
}
.join-meeting-modal .modal-content .form-input:disabled {
  background: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
}
.join-meeting-modal .modal-content .form-input--error {
  border-color: #C70816;
}
.join-meeting-modal .modal-content .form-input--error:focus {
  border-color: #C70816;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.join-meeting-modal .modal-content .form-error {
  margin-top: 6px;
  font-size: 14px;
  color: #C70816;
}
.join-meeting-modal .modal-content .input-with-toggle {
  position: relative;
  display: flex;
  align-items: center;
}
.join-meeting-modal .modal-content .input-with-toggle .form-input {
  padding-right: 48px;
}
.join-meeting-modal .modal-content .input-with-toggle .passcode-toggle-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.join-meeting-modal .modal-content .input-with-toggle .passcode-toggle-button:hover {
  opacity: 1;
}
.join-meeting-modal .modal-content .input-with-toggle .passcode-toggle-button:focus {
  outline: none;
  opacity: 1;
}
.join-meeting-modal .modal-content .input-with-toggle .passcode-toggle-button img {
  width: 20px;
  height: 20px;
}
.join-meeting-modal .modal-content .modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.join-meeting-modal .modal-content .modal-actions .cancel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-width: 100px;
  height: 44px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  background-color: #FFFFFF;
  color: #0B182E;
  border: 2px solid #0B182E;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
}
.join-meeting-modal .modal-content .modal-actions .cancel-button:hover:not(:disabled) {
  background-color: #E8EDF5;
}
.join-meeting-modal .modal-content .modal-actions .cancel-button:active:not(:disabled) {
  background-color: #D1DAEB;
}
.join-meeting-modal .modal-content .modal-actions .cancel-button:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
.join-meeting-modal .modal-content .modal-actions .cancel-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.join-meeting-modal .modal-content .modal-actions .join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-width: 100px;
  height: 44px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  background-color: #183260;
  color: #FFFFFF;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(24, 50, 96, 0.25);
  text-transform: none;
  letter-spacing: normal;
}
.join-meeting-modal .modal-content .modal-actions .join-button:hover:not(:disabled) {
  background-color: #1E3F78;
  box-shadow: 0 6px 16px rgba(24, 50, 96, 0.35);
}
.join-meeting-modal .modal-content .modal-actions .join-button:active:not(:disabled) {
  background-color: #244C91;
  box-shadow: 0 2px 8px rgba(24, 50, 96, 0.25);
}
.join-meeting-modal .modal-content .modal-actions .join-button:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
.join-meeting-modal .modal-content .modal-actions .join-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #d1d5db;
  box-shadow: none;
}

#LandingPage .join-meeting-modal .modal-header .modal-title {
  font-size: 20px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #001221;
  line-height: 24px;
  margin-top: 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .join-meeting-modal {
    width: 95%;
    max-height: 95vh;
  }
  .join-meeting-modal .modal-header {
    padding: 20px 20px 16px 20px;
  }
  .join-meeting-modal .modal-header .modal-title {
    font-size: 20px;
  }
  .join-meeting-modal .modal-content {
    padding: 20px;
  }
  .join-meeting-modal .modal-content .form-group {
    margin-bottom: 20px;
  }
  .join-meeting-modal .modal-content .form-group:last-of-type {
    margin-bottom: 28px;
  }
  .join-meeting-modal .modal-content .form-input {
    padding: 12px 14px;
    font-size: 16px;
  }
  .join-meeting-modal .modal-content .modal-actions {
    margin-top: 4px;
  }
  .join-meeting-modal .modal-content .modal-actions .cancel-button,
  .join-meeting-modal .modal-content .modal-actions .join-button {
    padding: 10px 20px;
    min-width: 70px;
  }
}
@media (max-width: 480px) {
  .modal-overlay {
    padding: 10px;
  }
  .join-meeting-modal {
    width: 100%;
  }
  .join-meeting-modal .modal-content .modal-actions {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .join-meeting-modal .modal-content .modal-actions .cancel-button,
  .join-meeting-modal .modal-content .modal-actions .join-button {
    width: 100%;
    min-width: auto;
    border-radius: 32px;
  }
}
.tos-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 18, 33, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tos-modal-overlay .tos-modal {
  background: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.tos-modal-overlay .tos-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #d1d5db;
}
.tos-modal-overlay .tos-modal .modal-header .modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #192936;
  margin: 0;
}
.tos-modal-overlay .tos-modal .modal-header .modal-close-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.tos-modal-overlay .tos-modal .modal-header .modal-close-button:hover {
  background-color: #f3f4f6;
}
.tos-modal-overlay .tos-modal .modal-header .modal-close-button .close-icon {
  width: 20px;
  height: 20px;
}
.tos-modal-overlay .tos-modal .tos-modal-content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-description {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container {
  margin-bottom: 32px;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-left: 36px;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .tos-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .tos-checkbox:checked ~ .checkbox-custom {
  background-color: #244C91;
  border-color: #244C91;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .tos-checkbox:checked ~ .checkbox-custom::after {
  display: block;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .checkbox-custom {
  position: absolute;
  left: 0;
  top: 2px;
  height: 24px;
  width: 24px;
  background-color: #FFFFFF;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  transition: all 0.2s;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .checkbox-custom::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .checkbox-text {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
  user-select: none;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .checkbox-text .tos-link {
  color: #244C91;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .checkbox-text .tos-link:hover {
  color: #183260;
  border-bottom-color: #183260;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label .checkbox-text .tos-link:focus {
  outline: 2px solid #244C91;
  outline-offset: 2px;
  border-radius: 2px;
}
.tos-modal-overlay .tos-modal .tos-modal-content .tos-checkbox-container .tos-checkbox-label:hover .checkbox-custom {
  border-color: #244C91;
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #d1d5db;
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions button {
  padding: 12px 28px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.2s;
  height: 44px;
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions button:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 2px;
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions .cancel-button {
  background-color: #FFFFFF;
  color: #0B182E;
  border: 2px solid #0B182E;
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions .cancel-button:hover:not(:disabled) {
  background-color: #E8EDF5;
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions .cancel-button:active:not(:disabled) {
  background-color: #D1DAEB;
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions .continue-button {
  background-color: #183260;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(24, 50, 96, 0.25);
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions .continue-button:hover:not(:disabled) {
  background-color: #1E3F78;
  box-shadow: 0 6px 16px rgba(24, 50, 96, 0.35);
}
.tos-modal-overlay .tos-modal .tos-modal-content .modal-actions .continue-button:active:not(:disabled) {
  background-color: #244C91;
  box-shadow: 0 2px 8px rgba(24, 50, 96, 0.25);
}

.global-error-boundary {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  box-sizing: border-box;
}
.global-error-boundary .error-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .global-error-boundary .error-container {
    padding: 24px;
    margin: 0 16px;
  }
}
.global-error-boundary .error-icon {
  margin-bottom: 24px;
  color: #C70816;
  display: flex;
  justify-content: center;
}
.global-error-boundary .error-icon svg {
  width: 64px;
  height: 64px;
}
@media (max-width: 768px) {
  .global-error-boundary .error-icon svg {
    width: 48px;
    height: 48px;
  }
}
.global-error-boundary .error-content {
  margin-bottom: 32px;
}
.global-error-boundary .error-content .error-title {
  margin: 0 0 16px 0;
  font-size: 28px;
  font-weight: 600;
  color: #111827;
}
@media (max-width: 768px) {
  .global-error-boundary .error-content .error-title {
    font-size: 24px;
  }
}
.global-error-boundary .error-content .error-message {
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}
.global-error-boundary .error-content .error-details {
  text-align: left;
  margin-top: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.global-error-boundary .error-content .error-details summary {
  padding: 12px 16px;
  background: #f9fafb;
  cursor: pointer;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}
.global-error-boundary .error-content .error-details summary:hover {
  background: #f3f4f6;
}
.global-error-boundary .error-content .error-details summary:focus {
  outline: none;
  background: #f3f4f6;
}
.global-error-boundary .error-content .error-details .error-technical {
  padding: 16px;
  background: #ffffff;
}
.global-error-boundary .error-content .error-details .error-technical p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #374151;
}
.global-error-boundary .error-content .error-details .error-technical p strong {
  font-weight: 600;
  color: #111827;
}
.global-error-boundary .error-content .error-details .error-technical .error-stack {
  margin: 12px 0 0 0;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 12px;
  color: #374151;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}
.global-error-boundary .error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .global-error-boundary .error-actions {
    flex-direction: column;
  }
}
.global-error-boundary .error-actions .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}
.global-error-boundary .error-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.global-error-boundary .error-actions .btn.btn-primary {
  background: #3b82f6;
  color: #FFFFFF;
  border-color: #3b82f6;
}
.global-error-boundary .error-actions .btn.btn-primary:hover:not(:disabled) {
  background: #2563eb;
  border-color: #2563eb;
}
.global-error-boundary .error-actions .btn.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
.global-error-boundary .error-actions .btn.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
}
.global-error-boundary .error-actions .btn.btn-secondary:hover:not(:disabled) {
  background: #e5e7eb;
  border-color: #9ca3af;
}
.global-error-boundary .error-actions .btn.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.2);
}
.global-error-boundary .error-actions .btn.btn-outline {
  background: transparent;
  color: #4b5563;
  border-color: #d1d5db;
}
.global-error-boundary .error-actions .btn.btn-outline:hover:not(:disabled) {
  background: #f9fafb;
  color: #374151;
  border-color: #9ca3af;
}
.global-error-boundary .error-actions .btn.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}
.global-error-boundary .retry-info {
  margin-bottom: 16px;
  padding: 8px 16px;
  background: #FEF6DB;
  border: 1px solid #FDD96D;
  border-radius: 6px;
  color: #A77E00;
  font-size: 14px;
}
.global-error-boundary .error-help {
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  color: #4b5563;
}
.global-error-boundary .error-help a {
  color: #3b82f6;
  text-decoration: none;
}
.global-error-boundary .error-help a:hover {
  text-decoration: underline;
}
.global-error-boundary .error-help a:focus {
  outline: none;
  text-decoration: underline;
}

.overlayErrorBoundary {
  padding: 16px;
  background: #F7DCDE;
  border: 1px solid #DF727A;
  border-radius: 8px;
  color: #85050F;
  text-align: center;
  margin: 8px;
}
.overlayErrorBoundary .overlayErrorTitle {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.overlayErrorBoundary .overlayErrorMessage {
  font-size: 12px;
  opacity: 0.9;
}
.overlayErrorBoundary .overlayErrorActions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.overlayErrorBoundary .overlayErrorActions .btn-retry {
  padding: 6px 12px;
  background: #C70816;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.overlayErrorBoundary .overlayErrorActions .btn-retry:hover {
  background: #A60712;
}
.overlayErrorBoundary .overlayErrorActions .btn-retry:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3);
}
.overlayErrorBoundary .overlayErrorActions .btn-dismiss {
  padding: 6px 12px;
  background: transparent;
  color: #A60712;
  border: 1px solid #D74F59;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.overlayErrorBoundary .overlayErrorActions .btn-dismiss:hover {
  background: #E7959B;
  border-color: #CF2B37;
}
.overlayErrorBoundary .overlayErrorActions .btn-dismiss:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

@media (prefers-color-scheme: dark) {
  .global-error-boundary {
    background: #0a0a0a;
  }
  .global-error-boundary .error-container {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
  }
  .global-error-boundary .error-container .error-title {
    color: #ffffff;
  }
  .global-error-boundary .error-container .error-message {
    color: #aaaaaa;
  }
  .global-error-boundary .error-container .error-details {
    border-color: #1a1a1a;
  }
  .global-error-boundary .error-container .error-details summary {
    background: #0a0a0a;
    color: #ffffff;
    border-color: #1a1a1a;
  }
  .global-error-boundary .error-container .error-details summary:hover, .global-error-boundary .error-container .error-details summary:focus {
    background: #1a1a1a;
  }
  .global-error-boundary .error-container .error-details .error-technical {
    background: #1a1a1a;
  }
  .global-error-boundary .error-container .error-details .error-technical p {
    color: #aaaaaa;
  }
  .global-error-boundary .error-container .error-details .error-technical p strong {
    color: #ffffff;
  }
  .global-error-boundary .error-container .error-details .error-technical .error-stack {
    background: #0a0a0a;
    border-color: #1a1a1a;
    color: #aaaaaa;
  }
  .global-error-boundary .error-help {
    border-color: #1a1a1a;
    color: #aaaaaa;
  }
}
.component-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 200px;
  background: #ffffff;
  border-radius: 8px;
}
.component-loader .loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
.component-loader .loader-text {
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.modal-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-loader .component-loader {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  min-height: 120px;
  min-width: 200px;
}

.inline-loader .component-loader {
  min-height: 80px;
  padding: 20px;
}
.inline-loader .component-loader .loader-spinner {
  width: 24px;
  height: 24px;
  border-width: 2px;
  margin-bottom: 12px;
}
.inline-loader .component-loader .loader-text {
  font-size: 12px;
}

@media (prefers-color-scheme: dark) {
  .component-loader {
    background: #1a1a1a;
    color: #ffffff;
  }
  .component-loader .loader-spinner {
    border-color: #1a1a1a;
    border-top-color: #3b82f6;
  }
  .component-loader .loader-text {
    color: #aaaaaa;
  }
  .modal-loader .component-loader {
    background: #1a1a1a;
  }
}
@media (prefers-reduced-motion: reduce) {
  .loader-spinner {
    animation: none;
    border-top-color: #9ca3af;
  }
}
@media (max-width: 768px) {
  .component-loader {
    padding: 24px 16px;
    min-height: 120px;
  }
  .component-loader .loader-spinner {
    width: 28px;
    height: 28px;
  }
  .component-loader .loader-text {
    font-size: 13px;
  }
  .modal-loader .component-loader {
    margin: 0 16px;
    min-width: calc(100vw - 32px);
    max-width: 300px;
  }
}
.loadingPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0e1a 0%, #1a1f2e 100%);
}
.loadingPage .loadingCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(92vw, 560px);
  padding: 32px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.loadingPage .loadingLogo {
  width: clamp(64px, 14vw, 104px);
  height: clamp(64px, 14vw, 104px);
  background: url("../../assets/logos/sangoma_icon.png") center/contain no-repeat;
  filter: drop-shadow(0 2px 12px rgba(255, 255, 255, 0.15)) brightness(1.1);
}
.loadingPage .loadingOrbit {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  animation: orbit-rotate 2.6s linear infinite;
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.5));
}
.loadingPage .loadingOrbit .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6);
  animation: pulse 1.8s ease-in-out infinite;
}
.loadingPage .loadingOrbit .d1 {
  transform: translate(-50%, -50%) rotate(0deg) translateX(60px);
}
.loadingPage .loadingOrbit .d2 {
  transform: translate(-50%, -50%) rotate(120deg) translateX(60px);
  animation-delay: 0.2s;
}
.loadingPage .loadingOrbit .d3 {
  transform: translate(-50%, -50%) rotate(240deg) translateX(60px);
  animation-delay: 0.4s;
}
.loadingPage .loadingMessage {
  font-size: clamp(16px, 2.4vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: 500;
}
.loadingPage .loadingBar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.loadingPage .loadingBar .progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 35%;
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 999px;
  animation: loading-stripes 1.4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}
.loadingPage + .footer,
.loadingPage .footer {
  display: none !important;
}

@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0), 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 10px rgba(255, 255, 255, 0);
  }
}
@keyframes loading-stripes {
  0% {
    left: -40%;
  }
  50% {
    left: 65%;
  }
  100% {
    left: 100%;
  }
}
.landingSkeleton {
  min-height: 100vh;
  animation: fadeIn 200ms ease-out;
}
.landingSkeleton__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
}
.landingSkeleton__card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-height: 180px;
}

.skeleton {
  display: block;
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 8px;
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shimmer 1.25s infinite;
}
.skeleton--logo {
  width: 200px;
  height: 40px;
  border-radius: 6px;
}
.skeleton--avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.skeleton--title {
  width: 60%;
  height: 22px;
  margin-bottom: 16px;
}
.skeleton--text {
  width: 100%;
  height: 14px;
  margin-bottom: 10px;
}
.skeleton--button {
  width: 140px;
  height: 36px;
  border-radius: 999px;
  margin-top: 14px;
}
.skeleton--row {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  margin-bottom: 12px;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.errorPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.errorPage__message {
  color: red;
  margin-bottom: 1rem;
}
.errorPage__button {
  padding: 8px 16px;
  background-color: #1976d2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.errorPage__button:hover {
  background-color: #1565c0;
}

.blurredBackground {
  filter: blur(2px);
  pointer-events: none;
}

.download-apps-section {
  padding: 0px 0;
  position: relative;
  overflow: hidden;
}

.download-apps-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.download-apps-background {
  display: flex;
  width: 1240px;
  height: 233.057px;
  padding: 51px 59px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 24px;
  background: linear-gradient(100deg, #FFF8FD 41.86%, #FFEEFC 102.31%);
}

.download-apps-content {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  height: 100%;
}

.download-apps-left {
  flex: 1;
  max-width: 500px;
}

.download-section-label {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  color: #001221;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#LandingPage .download-section-title,
.download-section-title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: #001221;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -1.2px;
}

.download-section-description {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #001221;
  line-height: 1.5;
  margin-bottom: 0;
}

.authenticated-download-section .download-section-label {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  color: #001221;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.authenticated-download-section .download-section-title {
  font-size: 2.5rem !important;
  font-weight: 600;
  font-style: normal;
  color: #001221 !important;
  margin: 0px 0px 8px 0px !important;
  line-height: 50px !important;
  letter-spacing: -1.2px;
}

.authenticated-download-section .download-section-description {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  color: #001221;
  line-height: 1.5;
  margin-bottom: 0;
}

.download-apps-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.apps-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.mobile-apps-group,
.desktop-apps-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  border: none;
  padding: 0;
  margin: 0;
}

.mobile-apps-group .app-group-title,
.desktop-apps-group .app-group-title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #001221;
  text-align: left;
  white-space: nowrap;
  padding: 0;
  margin-bottom: 16px;
}

.mobile-apps-buttons,
.desktop-apps-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.mobile-apps-buttons {
  padding-top: 0;
}

.mobile-app-button,
.desktop-app-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.mobile-app-button:hover,
.desktop-app-button:hover {
  transform: scale(1.05);
  filter: brightness(1.06) saturate(1.06);
}
.mobile-app-button:active,
.desktop-app-button:active {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(0.95);
  transition: all 0.1s ease;
}
.mobile-app-button:focus,
.desktop-app-button:focus {
  outline: 2px solid #244C91;
  outline-offset: 4px;
  border-radius: 8px;
}
.mobile-app-button::before,
.desktop-app-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 6px;
}
.mobile-app-button:hover::before,
.desktop-app-button:hover::before {
  left: 100%;
}
.mobile-app-button .store-badge,
.desktop-app-button .store-badge {
  height: 44px;
  width: auto;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
  display: block;
}

.desktop-app-button {
  padding-top: 0;
}

.mac-button .platform-icon {
  filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(1200%) hue-rotate(200deg);
}

.windows-button .platform-icon {
  filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(1200%) hue-rotate(200deg);
}

@media (max-width: 1280px) {
  .download-apps-background {
    width: 95%;
    max-width: 1240px;
    height: auto;
    min-height: 200px;
    padding: 40px 50px;
  }
  .download-apps-content {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .download-apps-background {
    width: 90%;
    padding: 35px 40px;
    align-items: center;
  }
  .download-apps-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .download-apps-left {
    max-width: none;
    text-align: center;
  }
  .download-apps-right {
    justify-content: center;
  }
  .apps-row {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .download-apps-section {
    padding: 60px 0;
  }
  .download-apps-container {
    padding: 0 16px;
  }
  .download-apps-background {
    width: 100%;
    padding: 30px 25px;
    align-items: center;
  }
  .download-apps-content {
    gap: 25px;
    align-items: center;
  }
  .download-section-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }
  .download-section-description {
    font-size: 0.9rem;
  }
  .apps-row {
    gap: 25px;
    justify-content: center;
  }
  .mobile-apps-buttons,
  .desktop-apps-buttons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .download-apps-section {
    padding: 40px 0;
  }
  .download-apps-background {
    padding: 25px 20px;
    align-items: center;
  }
  .download-apps-content {
    align-items: center;
  }
  .download-section-title {
    font-size: 1.5rem;
  }
  .download-section-description {
    font-size: 0.85rem;
  }
  .apps-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }
  .mobile-apps-group,
  .desktop-apps-group {
    width: 100%;
    align-items: center;
  }
  .mobile-apps-buttons,
  .desktop-apps-buttons {
    justify-content: center;
    width: 100%;
  }
  .mobile-app-button .store-badge,
  .desktop-app-button .store-badge {
    height: 40px;
  }
}
@media (max-width: 360px) {
  .download-apps-background {
    padding: 20px 15px;
    align-items: center;
  }
  .download-apps-content {
    align-items: center;
  }
  .download-section-title {
    font-size: 1.25rem;
  }
  .download-section-description {
    font-size: 0.8rem;
  }
  .apps-row {
    width: 100%;
  }
  .mobile-apps-buttons,
  .desktop-apps-buttons {
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .mobile-app-button .store-badge,
  .desktop-app-button .store-badge {
    height: 36px;
  }
}
@media (prefers-contrast: high) {
  .download-section-title,
  .app-group-title {
    color: #001221;
  }
  .download-section-description {
    color: #33414D;
  }
  .desktop-app-button {
    border-color: #33414D;
  }
  .desktop-app-button:hover {
    border-color: #001221;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-app-button:focus-visible,
.desktop-app-button:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-app-button,
  .desktop-app-button {
    transition: none;
  }
  .mobile-app-button:hover,
  .desktop-app-button:hover {
    transform: none;
    filter: brightness(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .mobile-app-button::before,
  .desktop-app-button::before {
    display: none;
  }
  .mobile-app-button .store-badge,
  .desktop-app-button .store-badge {
    transition: none;
  }
}
.business-use-cases-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.business-use-cases-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.business-use-cases-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-section-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: none;
}

.business-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-nav-arrow {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.section-nav-arrow:hover {
  background-color: #f5f5f5;
  color: #1a1a1a;
}
.section-nav-arrow:focus {
  outline: 2px solid #9c328c;
  outline-offset: 2px;
}

.business-section-subtitle {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.business-use-case-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  box-shadow: none;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.business-use-case-card:hover {
  transform: translateY(-2px);
}

.use-case-image-container {
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f9fa;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  max-width: 395px;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.use-case-image-container:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.use-case-image-container:hover .use-case-image {
  transform: scale(1.05);
}
.use-case-image-container:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}
.use-case-image-container:active .use-case-image {
  transform: scale(1.02);
}

.use-case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  will-change: transform;
}
.use-case-image:hover {
  filter: brightness(1.05) contrast(1.02);
}

.use-case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.use-case-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  margin-top: 0;
}

.use-case-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.use-case-learn-more {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: #666;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  align-self: flex-start;
  text-decoration: underline;
}
.use-case-learn-more:hover {
  color: #1a1a1a;
}
.use-case-learn-more:focus {
  outline: 2px solid #9c328c;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .business-use-cases-container {
    padding: 0 30px;
  }
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .business-use-cases-section {
    padding: 60px 0;
  }
  .business-use-cases-container {
    padding: 0 20px;
  }
  .business-section-header {
    margin-bottom: 32px;
  }
  .business-section-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .use-case-title {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .business-use-cases-section {
    padding: 40px 0;
  }
  .business-use-cases-container {
    padding: 0 16px;
  }
  .business-section-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-nav-arrow {
    align-self: flex-end;
  }
  .use-case-image-container {
    margin-bottom: 12px;
  }
  .use-case-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  .use-case-category {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }
}
@media (min-width: 1200px) {
  .business-use-cases-container {
    padding: 0 40px;
  }
  .use-cases-grid {
    gap: 32px;
  }
}
@media (min-width: 1400px) {
  .business-use-cases-container {
    max-width: 1400px;
    padding: 0 60px;
  }
}
@media (prefers-contrast: high) {
  .business-section-title,
  .use-case-title {
    color: #000;
  }
  .business-section-subtitle,
  .use-case-description {
    color: #333;
  }
  .business-use-case-card {
    border: 2px solid #333;
  }
  .use-case-learn-more {
    color: #000;
  }
  .use-case-learn-more:hover {
    color: #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  .business-use-case-card,
  .use-case-image,
  .use-case-image-container,
  .use-case-learn-more,
  .learn-more-arrow {
    transition: none;
  }
  .business-use-case-card:hover,
  .use-case-image:hover,
  .use-case-image-container:hover,
  .use-case-learn-more:hover,
  .learn-more-arrow:hover {
    transform: none;
  }
  .business-use-case-card:active,
  .use-case-image:active,
  .use-case-image-container:active,
  .use-case-learn-more:active,
  .learn-more-arrow:active {
    transform: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.use-case-learn-more:focus-visible,
.section-nav-arrow:focus-visible {
  outline: 3px solid #9c328c;
  outline-offset: 3px;
  border-radius: 4px;
}

.business-use-case-card:focus-within {
  outline: 2px solid #9c328c;
  outline-offset: 2px;
  border-radius: 16px;
}

#LandingPage .footer,
.footer {
  color: #FFFFFF;
  position: relative;
  overflow: visible;
  padding: 60px 48px 40px;
  background: transparent;
}
@media (max-width: 768px) {
  #LandingPage .footer,
  .footer {
    padding: 40px 24px 30px;
  }
}
@media (max-width: 480px) {
  #LandingPage .footer,
  .footer {
    padding: 32px 16px 24px;
  }
}

.footer-animated-bg-container {
  position: absolute;
  top: 60px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 96px);
  max-width: 1400px;
  z-index: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(0deg, rgb(8, 1, 86) 0%, rgb(56, 7, 94) 100%);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
@media (max-width: 768px) {
  .footer-animated-bg-container {
    top: 40px;
    bottom: 30px;
    width: calc(100% - 48px);
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .footer-animated-bg-container {
    top: 32px;
    bottom: 24px;
    width: calc(100% - 32px);
    border-radius: 16px;
  }
}

.footer-background-video {
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  position: absolute;
  right: 20%;
  top: 0;
  mix-blend-mode: exclusion;
  opacity: 0.3;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 728px) {
  .footer-background-video {
    right: 35%;
    transform: scale(1.5);
  }
}
@media (min-width: 1025px) {
  .footer-background-video {
    right: 50%;
    transform: scale(2);
  }
}

.footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  border-radius: inherit;
}

#LandingPage .footer-container,
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#LandingPage .footer-content-wrapper,
.footer-content-wrapper {
  background: transparent;
  backdrop-filter: blur(2px);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  #LandingPage .footer-content-wrapper,
  .footer-content-wrapper {
    padding: 32px 24px;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  #LandingPage .footer-content-wrapper,
  .footer-content-wrapper {
    padding: 24px 16px;
    border-radius: 16px;
  }
}

.footer-main-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-main-content {
    gap: 24px;
    margin-bottom: 32px;
  }
}

.footer-left-section {
  display: contents;
}

.footer-content-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1200px) {
  .footer-content-row {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .footer-content-row {
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer-content-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-description-column {
  display: flex;
  flex-direction: column;
}

#LandingPage .footer-connect-title,
.footer-connect-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #FFFFFF;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -1.14px;
  margin-bottom: 24px;
  max-width: 800px;
}
@media (max-width: 768px) {
  #LandingPage .footer-connect-title,
  .footer-connect-title {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.96px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  #LandingPage .footer-connect-title,
  .footer-connect-title {
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -0.84px;
    margin-bottom: 16px;
  }
}

.footer-title-line-1 {
  display: block;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.footer-title-line-2 {
  display: block;
  color: #FFFFFF;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
  text-underline-position: under;
  text-decoration-color: #FFFFFF;
}

#LandingPage .footer-company-description,
.footer-company-description {
  font-size: 16px;
  color: #FFFFFF !important;
  line-height: 1.5;
  margin: 0;
  max-width: 450px;
  font-weight: 400;
}
#LandingPage .footer-company-description strong,
.footer-company-description strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  #LandingPage .footer-company-description,
  .footer-company-description {
    max-width: none;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  #LandingPage .footer-company-description,
  .footer-company-description {
    font-size: 12px;
  }
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 32px 40px;
}
.footer-links-grid .footer-link-category:nth-child(1),
.footer-links-grid .footer-link-category:nth-child(2),
.footer-links-grid .footer-link-category:nth-child(3) {
  grid-row: 1;
}
.footer-links-grid .footer-link-category:nth-child(4),
.footer-links-grid .footer-link-category:nth-child(5),
.footer-links-grid .footer-link-category:nth-child(6) {
  grid-row: 2;
}
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }
  .footer-links-grid .footer-link-category {
    grid-row: auto !important;
  }
}
@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.footer-link-category {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#LandingPage .footer-category-title,
.footer-category-title {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item {
  margin: 0;
}

#LandingPage .footer-link,
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-underline-position: under;
  cursor: pointer;
  padding: 2px 0;
  transition: all 0.2s ease;
  text-align: left;
}
#LandingPage .footer-link:hover,
.footer-link:hover {
  color: #FFFFFF;
  text-decoration-color: #FFFFFF;
}
#LandingPage .footer-link:focus,
.footer-link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-external-icon {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.footer-link:hover .footer-external-icon {
  opacity: 1;
}

.footer-bottom-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

.footer-sangoma-branding {
  display: flex;
  align-items: center;
}

.footer-sangoma-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.footer-sangoma-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}
.footer-sangoma-logo:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-sangoma-logo {
    height: 28px;
  }
}
@media (max-width: 480px) {
  .footer-sangoma-logo {
    height: 24px;
  }
}

.footer-social-links {
  display: flex;
  align-items: center;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer-social-link:hover .footer-social-icon {
  color: #158FCF;
}
.footer-social-link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.footer-social-link.footer-social-fallback {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.footer-social-icon {
  width: 28px;
  height: 28px;
  color: #FFFFFF;
  transition: color 0.2s ease;
}

.footer-social-phone-only {
  display: block;
}

.footer-copyright {
  display: flex;
  align-items: center;
}

#LandingPage .footer-copyright-text,
.footer-copyright-text {
  font-size: 0.875rem;
  color: #FFFFFF !important;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .footer-social-icons {
    gap: 12px;
  }
  .footer-social-link {
    width: 36px;
    height: 36px;
  }
  .footer-social-icon {
    width: 18px;
    height: 18px;
  }
  .footer-sangoma-text {
    font-size: 1.25rem;
  }
  .footer-copyright-text {
    font-size: 0.75rem;
  }
}
@media (prefers-contrast: high) {
  .footer {
    background: #001221;
    border-top: 2px solid #FFFFFF;
  }
  .footer-connect-title,
  .footer-category-title {
    color: #FFFFFF;
  }
  .footer-link,
  .footer-contact-link {
    color: #FFFFFF;
  }
  .footer-link:hover,
  .footer-contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .footer-social-link {
    border: 2px solid #FFFFFF;
  }
  .footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-social-link,
  .footer-link,
  .footer-contact-link {
    transition: none;
  }
  .footer-social-link:hover,
  .footer-link:hover,
  .footer-contact-link:hover {
    transform: none;
  }
}
.footer-link:focus-visible,
.footer-contact-link:focus-visible,
.footer-social-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}

.authenticated-home-page {
  min-height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.authenticated-home-page .skip-to-main {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #001221;
  color: #FFFFFF;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  font-size: 14px;
  font-weight: 600;
}
.authenticated-home-page .skip-to-main:focus {
  top: 6px;
}
.authenticated-home-page .authenticated-home-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  margin-top: 63px;
}
.authenticated-home-page .authenticated-header-section {
  flex-shrink: 0;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  background-color: #FFFFFF;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .authenticated-home-page .authenticated-header-section {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 768px) {
  .authenticated-home-page .authenticated-header-section {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .authenticated-home-page .authenticated-header-section {
    padding: 1rem 0.5rem;
  }
}
.authenticated-home-page .authenticated-main-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}
@media (max-width: 1200px) {
  .authenticated-home-page .authenticated-main-section {
    padding: 0 1rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .authenticated-home-page .authenticated-main-section {
    padding: 0 1rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .authenticated-home-page .authenticated-main-section {
    padding: 0 0.5rem 1rem;
  }
}
.authenticated-home-page .calendar-content-wrapper {
  width: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}
.authenticated-home-page .calendar-content-wrapper.transitioning {
  opacity: 0.7;
  transform: translateY(10px);
}
.authenticated-home-page .calendar-panel-container {
  width: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}
.authenticated-home-page .calendar-panel-container.transitioning {
  opacity: 0.8;
  transform: translateY(5px);
}
.authenticated-home-page .calendar-panel-container {
  min-height: 600px;
}
@media (max-width: 768px) {
  .authenticated-home-page .calendar-panel-container {
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  .authenticated-home-page .calendar-panel-container {
    min-height: 450px;
  }
}
.authenticated-home-page .main-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 600px;
}
@media (max-width: 768px) {
  .authenticated-home-page .main-content {
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  .authenticated-home-page .main-content {
    min-height: 450px;
  }
}
.authenticated-home-page .authenticated-download-section {
  flex-shrink: 0;
  width: 100%;
  background-color: var(--color-background, #FFFFFF);
  border-top: 1px solid var(--color-border, #CCCFD2);
  margin-top: var(--spacing-xl, 2rem);
}
.authenticated-home-page .authenticated-download-section .download-apps-section {
  padding-top: var(--spacing-2xl, 3rem);
  padding-bottom: var(--spacing-2xl, 3rem);
}
.authenticated-home-page .authenticated-footer-section {
  flex-shrink: 0;
  width: 100%;
  background-color: var(--color-background, #FFFFFF);
}
.authenticated-home-page .authenticated-footer-section .footer {
  margin-top: 0;
}
.authenticated-home-page h1, .authenticated-home-page h2, .authenticated-home-page h3, .authenticated-home-page h4, .authenticated-home-page h5, .authenticated-home-page h6 {
  font-family: inherit;
  font-weight: 600;
  line-height: 1.3;
  color: #33414D;
  margin: 0;
}
.authenticated-home-page p {
  font-family: inherit;
  line-height: 1.5;
  color: #7F888F;
  margin: 0;
}
.authenticated-home-page button {
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.authenticated-home-page button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.authenticated-home-page {
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --color-primary: $primary500;
  --color-primary-hover: $primary600;
  --color-secondary: $secondary500;
  --color-secondary-hover: $secondary600;
  --color-success: $success500;
  --color-success-hover: $success600;
  --color-danger: $danger500;
  --color-danger-hover: $danger600;
  --color-text-primary: $black700;
  --color-text-secondary: $black500;
  --color-text-muted: $black400;
  --color-border: $black200;
  --color-background: $white;
  --color-background-light: $gray50;
}
.authenticated-home-page .home-header {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}
.authenticated-home-page .home-header .action-buttons {
  display: flex;
  gap: 1rem;
}
.authenticated-home-page .home-header .action-buttons .action-button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.authenticated-home-page .home-header .action-buttons .action-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.authenticated-home-page .home-header .action-buttons .action-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.authenticated-home-page .home-header .action-buttons .action-button.new-meeting-button {
  background-color: #9c328c;
  color: white;
}
.authenticated-home-page .home-header .action-buttons .action-button.new-meeting-button:hover:not(:disabled) {
  background-color: #7c2870;
}
.authenticated-home-page .home-header .action-buttons .action-button.join-button, .authenticated-home-page .home-header .action-buttons .action-button.schedule-button {
  background-color: #244C91;
  color: white;
}
.authenticated-home-page .home-header .action-buttons .action-button.join-button:hover:not(:disabled), .authenticated-home-page .home-header .action-buttons .action-button.schedule-button:hover:not(:disabled) {
  background-color: #1E3F78;
}
.authenticated-home-page .main-content {
  width: 100%;
  display: flex;
  justify-content: center;
}
.authenticated-home-page .main-content .events-view {
  width: 100%;
  max-width: 800px;
}
.authenticated-home-page .main-content .events-view .events-header {
  margin-bottom: 2rem;
}
.authenticated-home-page .main-content .events-view .events-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #33414D;
  margin-bottom: 0.5rem;
}
.authenticated-home-page .main-content .events-view .events-header .calendar-status {
  color: #7F888F;
  font-size: 0.875rem;
}
.authenticated-home-page .main-content .events-view .events-header .calendar-status .last-sync {
  margin-left: 1rem;
  font-style: italic;
}
.authenticated-home-page .main-content .events-view .events-list .no-events {
  text-align: center;
  padding: 3rem;
  color: #7F888F;
}
.authenticated-home-page .main-content .events-view .events-list .no-events p {
  font-size: 1.125rem;
}
.authenticated-home-page .main-content .events-view .events-list .event-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #CCCFD2;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: white;
}
.authenticated-home-page .main-content .events-view .events-list .event-card .event-time {
  font-weight: 600;
  color: #33414D;
  min-width: 100px;
}
.authenticated-home-page .main-content .events-view .events-list .event-card .event-details {
  flex: 1;
  margin-left: 1rem;
}
.authenticated-home-page .main-content .events-view .events-list .event-card .event-details .event-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #33414D;
  margin-bottom: 0.25rem;
}
.authenticated-home-page .main-content .events-view .events-list .event-card .event-details .event-attendees {
  color: #7F888F;
  font-size: 0.875rem;
}
.authenticated-home-page .main-content .events-view .events-list .event-card .join-button {
  padding: 0.5rem 1rem;
  background-color: #099F24;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.authenticated-home-page .main-content .events-view .events-list .event-card .join-button:hover {
  background-color: #07841E;
}
.authenticated-home-page .main-content .calendar-error {
  text-align: center;
  max-width: 500px;
}
.authenticated-home-page .main-content .calendar-error h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #C70816;
  margin-bottom: 1rem;
}
.authenticated-home-page .main-content .calendar-error p {
  color: #7F888F;
  margin-bottom: 2rem;
}
.authenticated-home-page .main-content .calendar-error .retry-button {
  padding: 0.75rem 1.5rem;
  background-color: #244C91;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.authenticated-home-page .main-content .calendar-error .retry-button:hover {
  background-color: #1E3F78;
}
.authenticated-home-page .download-section,
.authenticated-home-page .footer-section {
  padding: 2rem;
  text-align: center;
  color: #7F888F;
  border-top: 1px solid #CCCFD2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1200px) {
  .authenticated-home-page .authenticated-home-content {
    max-width: 100%;
  }
  .authenticated-home-page .authenticated-download-section .download-apps-section {
    padding-top: var(--spacing-xl, 2rem);
    padding-bottom: var(--spacing-xl, 2rem);
  }
}
@media (max-width: 768px) {
  .authenticated-home-page .authenticated-home-content {
    padding: 0;
  }
  .authenticated-home-page .main-content {
    padding: 0;
  }
  .authenticated-home-page .authenticated-download-section {
    margin-top: var(--spacing-lg, 1.5rem);
  }
  .authenticated-home-page .authenticated-download-section .download-apps-section {
    padding-top: var(--spacing-lg, 1.5rem);
    padding-bottom: var(--spacing-lg, 1.5rem);
  }
}
@media (max-width: 480px) {
  .authenticated-home-page .main-content {
    padding: 0;
  }
  .authenticated-home-page .authenticated-download-section {
    margin-top: var(--spacing-md, 1rem);
  }
  .authenticated-home-page .authenticated-download-section .download-apps-section {
    padding-top: var(--spacing-md, 1rem);
    padding-bottom: var(--spacing-md, 1rem);
  }
}
@media (prefers-contrast: high) {
  .authenticated-home-page .main-content .calendar-error {
    border: 2px solid #C70816;
  }
  .authenticated-home-page .main-content .calendar-error .retry-button {
    border: 2px solid #244C91;
  }
}
@media (prefers-reduced-motion: reduce) {
  .authenticated-home-page .calendar-content-wrapper,
  .authenticated-home-page .calendar-panel-container {
    transition: none;
  }
  .authenticated-home-page .calendar-content-wrapper.transitioning,
  .authenticated-home-page .calendar-panel-container.transitioning {
    opacity: 1;
    transform: none;
  }
  .authenticated-home-page .headerActionButton {
    transition: none;
  }
  .authenticated-home-page .headerActionButton:hover {
    transform: none;
  }
}
.authenticated-home-page button:focus-visible {
  outline: 3px solid var(--color-primary, #244C91);
  outline-offset: 2px;
  border-radius: 4px;
}
.authenticated-home-page .calendar-content-wrapper.transitioning *:focus-visible {
  outline: 3px solid var(--color-primary, #244C91);
  outline-offset: 2px;
}
@media (prefers-contrast: high) {
  .authenticated-home-page .headerActionButton {
    border: 2px solid currentColor;
  }
  .authenticated-home-page .headerActionButton:hover {
    background-color: var(--color-text-primary, #33414D);
    color: var(--color-background, #FFFFFF);
  }
  .authenticated-home-page .authenticated-download-section,
  .authenticated-home-page .authenticated-footer-section {
    border-top: 2px solid var(--color-text-primary, #33414D);
  }
}

.meetingButton {
  background-color: transparent;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.meetingButton:hover {
  transform: none;
  box-shadow: none;
  background-color: transparent;
}

.meetingBox {
  background-color: rgba(156, 50, 140, 0.0784313725);
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  height: 66px;
  width: 66px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.meetingBox.blueBox {
  background: rgba(36, 76, 145, 0.04);
}

.meetingButton:hover .meetingBox:not(.blueBox) {
  background-color: rgba(156, 50, 140, 0.2);
}

.meetingButton:hover .meetingBox.blueBox {
  background-color: rgba(36, 76, 145, 0.15);
}

.meetingText {
  color: #5B074E !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 20px !important;
}

.meetingText.blueText {
  color: #244C91 !important;
}

.calendar-connection-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.calendar-connection-view .calendar-illustration {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-connection-view .calendar-illustration .calendar-icon {
  color: #d1d5db;
  width: 120px;
  height: 126px;
  transition: color 0.3s ease;
}
.calendar-connection-view .calendar-illustration .calendar-icon:hover {
  color: #9ca3af;
}
.calendar-connection-view .connection-content {
  width: 100%;
}
.calendar-connection-view .connection-content .connection-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
@media (max-width: 768px) {
  .calendar-connection-view .connection-content .connection-heading {
    font-size: 1.875rem;
  }
}
@media (max-width: 480px) {
  .calendar-connection-view .connection-content .connection-heading {
    font-size: 1.5rem;
  }
}
.calendar-connection-view .connection-content .connection-description {
  font-size: 1.125rem;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .calendar-connection-view .connection-content .connection-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.calendar-connection-view .connection-content .connection-error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}
.calendar-connection-view .connection-content .connection-error p {
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}
.calendar-connection-view .connection-content .connection-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.calendar-connection-view .connection-content .connection-buttons .connect-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background-color: #ffffff;
  color: #374151;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 200px;
  justify-content: center;
}
.calendar-connection-view .connection-content .connection-buttons .connect-button .provider-icon {
  flex-shrink: 0;
}
.calendar-connection-view .connection-content .connection-buttons .connect-button:hover:not(:disabled) {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}
.calendar-connection-view .connection-content .connection-buttons .connect-button:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.calendar-connection-view .connection-content .connection-buttons .connect-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.calendar-connection-view .connection-content .connection-buttons .connect-button:disabled:hover {
  border-color: #e5e7eb;
  color: #374151;
}
.calendar-connection-view .connection-content .connection-buttons .connect-button.loading {
  position: relative;
  pointer-events: none;
}
.calendar-connection-view .connection-content .connection-buttons .connect-button.loading .loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-connection-view .connection-content .connection-buttons .connect-button.loading .loading-spinner .spinner-icon {
  animation: spin 1s linear infinite;
  color: #6b7280;
}
.calendar-connection-view .connection-content .connection-buttons .connect-button.google-connect:hover:not(:disabled) {
  border-color: #4285f4;
  color: #4285f4;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
}
.calendar-connection-view .connection-content .connection-buttons .connect-button.google-connect:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}
.calendar-connection-view .connection-content .connection-buttons .connect-button.microsoft-connect:hover:not(:disabled) {
  border-color: #0078d4;
  color: #0078d4;
  box-shadow: 0 8px 25px rgba(0, 120, 212, 0.15);
}
.calendar-connection-view .connection-content .connection-buttons .connect-button.microsoft-connect:focus {
  border-color: #0078d4;
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}
@media (max-width: 768px) {
  .calendar-connection-view .connection-content .connection-buttons {
    gap: 0.75rem;
  }
  .calendar-connection-view .connection-content .connection-buttons .connect-button {
    min-width: 180px;
    padding: 0.875rem 1.25rem;
  }
}
@media (max-width: 480px) {
  .calendar-connection-view .connection-content .connection-buttons {
    flex-direction: column;
    align-items: center;
  }
  .calendar-connection-view .connection-content .connection-buttons .connect-button {
    width: 100%;
    max-width: 280px;
    min-height: 44px;
    font-size: 0.9rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1200px) {
  .calendar-connection-view {
    max-width: 500px;
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 768px) {
  .calendar-connection-view {
    padding: 1rem 0.75rem;
  }
  .calendar-connection-view .calendar-illustration {
    margin-bottom: 2rem;
  }
  .calendar-connection-view .calendar-illustration .calendar-icon {
    width: 100px;
    height: 105px;
  }
  .calendar-connection-view .connection-content .connection-heading {
    margin-bottom: 1rem;
  }
  .calendar-connection-view .connection-content .connection-description {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .calendar-connection-view .calendar-illustration {
    margin-bottom: 1.5rem;
  }
  .calendar-connection-view .calendar-illustration .calendar-icon {
    width: 80px;
    height: 84px;
  }
}
@media (prefers-contrast: high) {
  .calendar-connection-view .calendar-illustration .calendar-icon {
    color: #6b7280;
  }
  .calendar-connection-view .connection-content .connection-heading {
    color: #000000;
  }
  .calendar-connection-view .connection-content .connection-description {
    color: #374151;
  }
  .calendar-connection-view .connection-content .connection-buttons .connect-button {
    border-width: 3px;
  }
  .calendar-connection-view .connection-content .connection-buttons .connect-button:hover:not(:disabled) {
    border-width: 3px;
  }
}
.calendar-connection-view .connection-content .connection-buttons .connect-button:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 12px;
}
.calendar-connection-view .connection-content .connection-buttons .google-connect:focus-visible {
  outline-color: #4285f4;
}
.calendar-connection-view .connection-content .connection-buttons .microsoft-connect:focus-visible {
  outline-color: #0078d4;
}

@media (hover: none) and (pointer: coarse) {
  .calendar-connection-view .connection-content .connection-buttons .connect-button {
    min-height: 48px;
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .calendar-connection-view .calendar-illustration .calendar-icon {
    transition: none;
  }
  .calendar-connection-view .connection-content .connection-buttons .connect-button {
    transition: none;
  }
  .calendar-connection-view .connection-content .connection-buttons .connect-button:hover:not(:disabled) {
    transform: none;
  }
  .calendar-connection-view .connection-content .connection-buttons .connect-button.loading .loading-spinner .spinner-icon {
    animation: none;
  }
}
.events-view {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.events-view .events-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}
.events-view .events-header .events-title-section {
  flex: 1;
}
.events-view .events-header .events-title {
  font-size: 32px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.events-view .events-header .calendar-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.events-view .events-header .calendar-status .provider-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.events-view .events-header .calendar-status .provider-info .provider-icon {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}
.events-view .events-header .calendar-status .provider-info .provider-text {
  font-size: 16px;
  font-weight: 500;
  color: #495057;
}
.events-view .events-header .calendar-status .last-sync {
  font-size: 14px;
  color: #6c757d;
  margin-left: 32px;
}
.events-view .events-header .events-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.events-view .events-header .events-actions .refresh-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.events-view .events-header .events-actions .refresh-button:hover:not(:disabled) {
  background: #e9ecef;
  border-color: #adb5bd;
  transform: translateY(-1px);
}
.events-view .events-header .events-actions .refresh-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.events-view .events-header .events-actions .refresh-button.syncing {
  pointer-events: none;
}
.events-view .events-header .events-actions .refresh-button .refresh-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.events-view .events-header .events-actions .refresh-button .refresh-icon.spinning {
  animation: spin 1s linear infinite;
}
.events-view .events-list-container {
  flex: 1;
  min-height: 400px;
}
.events-view .events-list-container .no-events {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  min-height: 400px;
}
.events-view .events-list-container .no-events .no-events-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  opacity: 0.4;
}
.events-view .events-list-container .no-events .no-events-icon .calendar-icon {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.events-view .events-list-container .no-events .no-events-title {
  font-size: 24px;
  font-weight: 600;
  color: #495057;
  margin: 0 0 12px 0;
}
.events-view .events-list-container .no-events .no-events-description {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
  max-width: 400px;
  line-height: 1.5;
}
.events-view .events-list-container .events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.events-view .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1200px) {
  .events-view {
    max-width: 700px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .events-view {
    padding: 0 16px;
  }
  .events-view .events-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .events-view .events-header .events-title {
    font-size: 28px;
  }
  .events-view .events-header .calendar-status .provider-info {
    gap: 10px;
  }
  .events-view .events-header .calendar-status .provider-info .provider-icon {
    width: 18px;
    height: 18px;
  }
  .events-view .events-header .calendar-status .last-sync {
    margin-left: 0;
  }
  .events-view .events-header .events-actions {
    margin-top: 0;
    align-self: flex-end;
  }
  .events-view .events-header .events-actions .refresh-button {
    min-height: 44px;
    min-width: 44px;
  }
  .events-view .events-list-container .no-events {
    padding: 60px 16px;
  }
  .events-view .events-list-container .no-events .no-events-icon {
    width: 64px;
    height: 64px;
  }
  .events-view .events-list-container .no-events .no-events-title {
    font-size: 20px;
  }
  .events-view .events-list-container .no-events .no-events-description {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .events-view {
    padding: 0 12px;
  }
  .events-view .events-header .events-title {
    font-size: 24px;
  }
  .events-view .events-header .calendar-status .provider-info .provider-text {
    font-size: 14px;
  }
  .events-view .events-header .calendar-status .last-sync {
    font-size: 12px;
  }
  .events-view .events-list-container .no-events {
    padding: 40px 12px;
  }
  .events-view .events-list-container .no-events .no-events-icon {
    width: 56px;
    height: 56px;
  }
  .events-view .events-list-container .no-events .no-events-title {
    font-size: 18px;
  }
  .events-view .events-list-container .no-events .no-events-description {
    font-size: 13px;
  }
}
.events-view .events-header .events-actions .refresh-button:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}
@media (prefers-contrast: high) {
  .events-view .events-header {
    border-bottom-color: #000;
  }
  .events-view .events-header .events-title {
    color: #000;
  }
  .events-view .events-header .events-actions .refresh-button {
    border-color: #000;
  }
  .events-view .events-header .events-actions .refresh-button:hover {
    background: #000;
    color: #fff;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .events-view .events-header .events-actions .refresh-button {
    transition: none;
  }
  .events-view .events-header .events-actions .refresh-button:hover {
    transform: none;
  }
  .events-view .events-header .events-actions .refresh-button .refresh-icon.spinning {
    animation: none;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
.event-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}
.event-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.event-card:last-child {
  margin-bottom: 0;
}
.event-card .event-time-section {
  flex-shrink: 0;
  min-width: 100px;
  text-align: left;
}
.event-card .event-time-section .event-date {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
  text-transform: capitalize;
}
.event-card .event-time-section .event-time {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}
.event-card .event-details {
  flex: 1;
  min-width: 0;
}
.event-card .event-details .event-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.4;
  word-wrap: break-word;
}
.event-card .event-details .event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.event-card .event-details .event-location .location-icon {
  font-size: 12px;
  opacity: 0.7;
}
.event-card .event-details .event-location .location-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}
.event-card .event-details .event-attendees {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.event-card .event-details .event-attendees .attendee-avatars {
  display: flex;
  align-items: center;
  gap: -4px;
}
.event-card .event-details .event-attendees .attendee-avatars .attendee-avatar {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  overflow: hidden;
  background: #f3f4f6;
  margin-left: -4px;
}
.event-card .event-details .event-attendees .attendee-avatars .attendee-avatar:first-child {
  margin-left: 0;
}
.event-card .event-details .event-attendees .attendee-avatars .attendee-avatar .avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card .event-details .event-attendees .attendee-avatars .attendee-avatar .avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}
.event-card .event-details .event-attendees .attendee-avatars .attendee-count {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
  margin-left: -4px;
}
.event-card .event-details .event-attendees .attendee-text {
  font-size: 13px;
  color: #6b7280;
}
.event-card .event-details .event-recurrence {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.event-card .event-details .event-recurrence .recurrence-icon {
  font-size: 12px;
  opacity: 0.7;
}
.event-card .event-details .event-recurrence .recurrence-text {
  font-size: 12px;
  color: #8b5cf6;
  font-weight: 500;
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
}
.event-card .event-details .event-status {
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-card .event-details .event-status .status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.event-card .event-details .event-status .status-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
}
.event-card .event-details .event-status.status-upcoming .status-indicator {
  background: #3b82f6;
}
.event-card .event-details .event-status.status-upcoming .status-text {
  color: #3b82f6;
}
.event-card .event-details .event-status.status-in-progress .status-indicator {
  background: #10b981;
}
.event-card .event-details .event-status.status-in-progress .status-text {
  color: #10b981;
}
.event-card .event-details .event-status.status-completed .status-indicator {
  background: #6b7280;
}
.event-card .event-details .event-status.status-completed .status-text {
  color: #6b7280;
}
.event-card .event-actions {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.event-card .event-actions .join-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.event-card .event-actions .join-button:hover {
  background: #2563eb;
  transform: translateY(-1px);
}
.event-card .event-actions .join-button:active {
  transform: translateY(0);
}
.event-card .event-actions .join-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
.event-card .event-actions .join-button.join-button-active {
  background: #10b981;
  animation: pulse 2s infinite;
}
.event-card .event-actions .join-button.join-button-active:hover {
  background: #059669;
}
.event-card .event-actions .join-button .join-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.event-card .event-actions .event-actions-menu {
  position: relative;
}
.event-card .event-actions .event-actions-menu .actions-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.event-card .event-actions .event-actions-menu .actions-menu-button:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.event-card .event-actions .event-actions-menu .actions-menu-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
.event-card .event-actions .event-actions-menu .actions-menu-button[aria-expanded=true] {
  background: #e5e7eb;
  border-color: #d1d5db;
}
.event-card .event-actions .event-actions-menu .actions-menu-button .menu-dots {
  font-size: 16px;
  color: #6b7280;
  font-weight: bold;
  line-height: 1;
}
.event-card .event-actions .event-actions-menu .actions-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  min-width: 160px;
  overflow: hidden;
}
.event-card .event-actions .event-actions-menu .actions-dropdown .action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  text-align: left;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.event-card .event-actions .event-actions-menu .actions-dropdown .action-item:hover {
  background: #f9fafb;
}
.event-card .event-actions .event-actions-menu .actions-dropdown .action-item:focus {
  outline: none;
  background: #f3f4f6;
}
.event-card .event-actions .event-actions-menu .actions-dropdown .action-item .action-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1200px) {
  .event-card {
    padding: 18px;
  }
}
@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .event-card .event-time-section {
    min-width: auto;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .event-card .event-time-section .event-date {
    font-size: 13px;
    font-weight: 700;
  }
  .event-card .event-time-section .event-time {
    font-size: 12px;
    color: #8b5cf6;
    font-weight: 500;
  }
  .event-card .event-details .event-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .event-card .event-details .event-location {
    margin-bottom: 10px;
  }
  .event-card .event-details .event-location .location-text {
    font-size: 12px;
  }
  .event-card .event-details .event-attendees {
    margin-bottom: 10px;
  }
  .event-card .event-details .event-attendees .attendee-avatars .attendee-avatar,
  .event-card .event-details .event-attendees .attendee-avatars .attendee-count {
    width: 24px;
    height: 24px;
  }
  .event-card .event-details .event-attendees .attendee-avatars .attendee-avatar .avatar-initials,
  .event-card .event-details .event-attendees .attendee-avatars .attendee-count .avatar-initials {
    font-size: 10px;
  }
  .event-card .event-details .event-attendees .attendee-avatars .attendee-count {
    font-size: 9px;
  }
  .event-card .event-details .event-attendees .attendee-text {
    font-size: 12px;
  }
  .event-card .event-details .event-recurrence {
    margin-bottom: 8px;
  }
  .event-card .event-details .event-recurrence .recurrence-text {
    font-size: 11px;
  }
  .event-card .event-details .event-status .status-text {
    font-size: 11px;
  }
  .event-card .event-actions {
    align-self: stretch;
    gap: 10px;
  }
  .event-card .event-actions .join-button {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
    min-height: 44px;
  }
  .event-card .event-actions .join-button .join-icon {
    width: 12px;
    height: 12px;
  }
  .event-card .event-actions .event-actions-menu .actions-menu-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .event-card .event-actions .event-actions-menu .actions-dropdown {
    right: -8px;
    min-width: 140px;
  }
  .event-card .event-actions .event-actions-menu .actions-dropdown .action-item {
    padding: 12px 10px;
    font-size: 12px;
    min-height: 44px;
  }
  .event-card .event-actions .event-actions-menu .actions-dropdown .action-item .action-icon {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 480px) {
  .event-card {
    padding: 14px;
    gap: 10px;
  }
  .event-card .event-time-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .event-card .event-details .event-title {
    font-size: 14px;
    line-height: 1.3;
  }
  .event-card .event-details .event-attendees .attendee-avatars .attendee-avatar,
  .event-card .event-details .event-attendees .attendee-avatars .attendee-count {
    width: 22px;
    height: 22px;
  }
  .event-card .event-details .event-attendees .attendee-avatars .attendee-avatar .avatar-initials,
  .event-card .event-details .event-attendees .attendee-avatars .attendee-count .avatar-initials {
    font-size: 9px;
  }
  .event-card .event-details .event-attendees .attendee-avatars .attendee-count {
    font-size: 8px;
  }
  .event-card .event-details .event-attendees .attendee-text {
    font-size: 11px;
  }
  .event-card .event-actions .join-button {
    font-size: 12px;
    padding: 10px 14px;
  }
  .event-card .event-actions .event-actions-menu .actions-dropdown {
    right: -4px;
    min-width: 120px;
  }
  .event-card .event-actions .event-actions-menu .actions-dropdown .action-item {
    padding: 10px 8px;
    font-size: 11px;
    min-height: 40px;
  }
}
.event-card .event-actions .join-button:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}
.event-card .event-actions .event-actions-menu .actions-menu-button:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}
.event-card .event-actions .event-actions-menu .actions-dropdown .action-item:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
}

@media (hover: none) and (pointer: coarse) {
  .event-card .event-actions .join-button {
    min-height: 48px;
    padding: 12px 18px;
  }
  .event-card .event-actions .event-actions-menu .actions-menu-button {
    min-width: 48px;
    min-height: 48px;
  }
  .event-card .event-actions .event-actions-menu .actions-dropdown .action-item {
    min-height: 48px;
    padding: 14px 12px;
  }
}
@media (prefers-contrast: high) {
  .event-card {
    border-color: #000000;
  }
  .event-card .event-details .event-title {
    color: #000000;
  }
  .event-card .event-details .event-status.status-upcoming .status-indicator,
  .event-card .event-details .event-status.status-upcoming .status-text {
    color: #0000ff;
  }
  .event-card .event-details .event-status.status-in-progress .status-indicator,
  .event-card .event-details .event-status.status-in-progress .status-text {
    color: #008000;
  }
  .event-card .event-details .event-status.status-completed .status-indicator,
  .event-card .event-details .event-status.status-completed .status-text {
    color: #000000;
  }
}
@media (prefers-reduced-motion: reduce) {
  .event-card {
    transition: none;
  }
  .event-card .event-actions .join-button {
    transition: none;
    animation: none;
  }
  .event-card .event-actions .join-button:hover {
    transform: none;
  }
  .event-card .event-actions .join-button:active {
    transform: none;
  }
  .event-card .event-actions .event-actions-menu .actions-menu-button {
    transition: none;
  }
}
.authenticated-event-tab-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Segoe UI", sans-serif;
  padding: 12px 24px;
  margin-top: 20px;
  position: relative;
}

.event-summary {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.event-summary h6 {
  color: #18181B;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}

.event-summary .seprateLine {
  color: #E5E6E8;
}

.event-summary .done,
.event-summary .scheduled {
  display: flex;
  gap: 5px;
  align-items: center;
}

.icon {
  margin-right: 6px;
  vertical-align: middle;
}

.icon.green {
  color: green;
}

.icon.gray {
  color: gray;
}

.tabs {
  display: flex;
  gap: 12px;
}

.tab {
  padding: 6px 14px;
  background: none;
  border: none;
  border-radius: 6px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.tab.active {
  border-radius: 8px;
  background: #142B53;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 6px 16px;
}

.filter-search #events {
  border: none;
  color: #18181B;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  /* 133.333% */
}

.event-tab-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-search {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  cursor: pointer;
}

.custom-select {
  position: relative;
  width: max-content;
  font-family: sans-serif;
}

.custom-select-display {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: auto;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 6px;
  z-index: 100;
  width: max-content;
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #2c3e50;
  transition: background 0.2s ease;
}

.custom-option:hover {
  background: #f3f6f9;
}

.custom-option input[type=radio] {
  display: none;
}

.custom-radio {
  width: 16px;
  height: 16px;
  border: 2px solid #99A0A6;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.custom-option input[type=radio]:checked + .custom-radio {
  border-color: #244C91;
}

.custom-option input[type=radio]:checked + .custom-radio::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: #244C91;
  border-radius: 50%;
}

.arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.arrow.open {
  transform: rotate(180deg);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f1f1;
  border-radius: 6px;
  padding: 4px 10px;
}

.search-icon {
  color: #888;
  margin-right: 6px;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.row-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.authenticated-event-tab-section .events-detail h2 {
  color: #18181B !important;
  font-size: 28px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 30px !important;
  letter-spacing: -0.84px;
  margin-bottom: 5px;
  margin-top: 0 !important;
  text-align: left !important;
}

@media (max-width: 1023px) {
  .authenticated-home-page .authenticated-home-content {
    margin-top: 0;
  }
  .authenticated-event-tab-section {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .authenticated-event-tab-section {
    margin-top: 70PX;
  }
  .authenticated-event-tab-section .row-flex {
    flex-wrap: wrap;
    gap: 10px;
  }
  .filter-search {
    width: 78%;
  }
  .search-box {
    min-width: 100%;
  }
}
@media (max-width: 991px) {
  .authenticated-event-tab-section {
    padding-bottom: 60px;
    margin-bottom: 10px;
  }
  .authenticated-event-tab-section .tabs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    justify-content: center;
  }
}
div.transcript-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100vh;
  background: #0a0a0a !important;
  background-color: #0a0a0a !important;
  border-right: 1px solid #1a1a1a;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  z-index: 99999 !important;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}
div.transcript-panel.transcript-panel-open {
  transform: translateX(0);
  pointer-events: auto;
}
div.transcript-panel .transcript-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #1a1a1a;
  background: #0a0a0a !important;
  min-height: 80px;
}
div.transcript-panel .transcript-panel-header .transcript-panel-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
div.transcript-panel .transcript-panel-header .transcript-panel-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
div.transcript-panel .transcript-panel-header .transcript-panel-download,
div.transcript-panel .transcript-panel-header .transcript-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  color: #ffffff;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.transcript-panel .transcript-panel-header .transcript-panel-download:hover,
div.transcript-panel .transcript-panel-header .transcript-panel-close:hover {
  background: #1a1a1a;
  color: #ffffff;
}
div.transcript-panel .transcript-panel-header .transcript-panel-download:active,
div.transcript-panel .transcript-panel-header .transcript-panel-close:active {
  transform: scale(0.95);
}
div.transcript-panel .transcript-panel-header .transcript-panel-download:focus,
div.transcript-panel .transcript-panel-header .transcript-panel-close:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
div.transcript-panel .transcript-panel-header .transcript-panel-download svg,
div.transcript-panel .transcript-panel-header .transcript-panel-close svg {
  width: 20px;
  height: 20px;
}
div.transcript-panel .transcript-panel-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}
div.transcript-panel .transcript-panel-content .transcript-placeholder {
  text-align: center;
  max-width: 280px;
}
div.transcript-panel .transcript-panel-content .transcript-placeholder .transcript-placeholder-icon {
  margin-bottom: 16px;
  color: #666666;
  display: flex;
  justify-content: center;
}
div.transcript-panel .transcript-panel-content .transcript-placeholder .transcript-placeholder-icon svg {
  width: 48px;
  height: 48px;
}
div.transcript-panel .transcript-panel-content .transcript-placeholder .transcript-placeholder-title {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
div.transcript-panel .transcript-panel-content .transcript-placeholder .transcript-placeholder-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #aaaaaa;
}
div.transcript-panel .transcript-panel-content::-webkit-scrollbar {
  width: 6px;
}
div.transcript-panel .transcript-panel-content::-webkit-scrollbar-track {
  background: #0a0a0a;
}
div.transcript-panel .transcript-panel-content::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 3px;
}
div.transcript-panel .transcript-panel-content::-webkit-scrollbar-thumb:hover {
  background: #555555;
}
@media (max-width: 768px) {
  div.transcript-panel {
    width: 100vw;
  }
  div.transcript-panel .transcript-panel-header {
    padding: 16px 20px;
    min-height: 70px;
  }
  div.transcript-panel .transcript-panel-header .transcript-panel-title {
    font-size: 16px;
  }
  div.transcript-panel .transcript-panel-content {
    padding: 20px;
  }
}

body.meeting-active.transcript-panel-open #meeting-container {
  margin-left: 400px;
  transition: margin-left 0.3s ease-in-out;
  width: calc(100vw - 400px);
}
@media (max-width: 768px) {
  body.meeting-active.transcript-panel-open #meeting-container {
    margin-left: 0;
    width: 100vw;
  }
}
body.meeting-active #meeting-container {
  transition: margin-left 0.3s ease-in-out;
}

body.transcript-panel-open .transcript-panel {
  z-index: 99999 !important;
}

/**
 * Lazy Image Component Styles
 * Optimized styles for lazy loading images with performance enhancements
 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}
.lazy-image {
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  opacity: 0;
  filter: blur(5px);
}
.lazy-image.loaded {
  opacity: 1;
  filter: blur(0);
  animation: fadeIn 0.3s ease-in-out;
}
.lazy-image[width], .lazy-image[height] {
  max-width: 100%;
  height: auto;
}

.lazy-image-placeholder {
  background-color: #f8f9fa;
  color: #6c757d;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lazy-image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}
.lazy-image-placeholder {
  min-height: 100px;
  min-width: 100px;
}
@media (max-width: 768px) {
  .lazy-image-placeholder {
    min-height: 80px;
    min-width: 80px;
  }
}

.loading-spinner {
  animation: spin 1s linear infinite;
  color: #9c328c;
  z-index: 1;
  position: relative;
}
.loading-spinner svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .loading-spinner svg {
    width: 20px;
    height: 20px;
  }
}

.image-error {
  color: #dc3545;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.image-error svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .image-error svg {
    width: 20px;
    height: 20px;
  }
}
.image-error::after {
  content: "Failed to load";
  font-size: 12px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .image-error::after {
    font-size: 10px;
  }
}

.lazy-image.loginPage__mockupImage, .lazy-image.loginPage__transcriptImage {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .lazy-image.loginPage__mockupImage, .lazy-image.loginPage__transcriptImage {
    image-rendering: auto;
  }
}
.lazy-image.use-case-image {
  image-rendering: auto;
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.lazy-image.app-icon, .lazy-image.store-badge {
  image-rendering: auto;
  filter: none;
}
.lazy-image.app-icon.loaded, .lazy-image.store-badge.loaded {
  filter: none;
}

.loginPage__imageContainer .lazy-image-placeholder,
.use-case-image-container .lazy-image-placeholder,
.download-apps-right .lazy-image-placeholder {
  width: 100%;
  height: 100%;
}

.webp-supported .lazy-image::after {
  content: "WebP";
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 255, 0, 0.7);
  color: white;
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 10;
}
.webp-supported .lazy-image:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .lazy-image,
  .lazy-image-placeholder,
  .loading-spinner {
    animation: none;
    transition: none;
  }
  .lazy-image-placeholder::before {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  .lazy-image-placeholder {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
  }
  .loading-spinner {
    color: #fff;
  }
  .image-error {
    color: #ff6b6b;
  }
}
@media print {
  .lazy-image-placeholder {
    display: none;
  }
  .lazy-image {
    opacity: 1 !important;
    filter: none !important;
  }
}
.events-skeleton {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  animation: fadeIn 200ms ease-out;
}
.events-skeleton__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}
.events-skeleton__header .events-skeleton__title-section {
  flex: 1;
}
.events-skeleton__header .events-skeleton__status {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.events-skeleton__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.events-skeleton__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.events-skeleton__time-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 100px;
  text-align: center;
}
.events-skeleton__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.events-skeleton__attendees {
  display: flex;
  align-items: center;
  gap: 12px;
}
.events-skeleton__avatars {
  display: flex;
  gap: 8px;
}
.events-skeleton__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .events-skeleton {
    padding: 0 16px;
  }
  .events-skeleton__card {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  .events-skeleton__time-section {
    min-width: auto;
    text-align: left;
  }
  .events-skeleton__actions {
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .events-skeleton {
    padding: 0 12px;
  }
  .events-skeleton__card {
    padding: 12px;
  }
}

.skeleton {
  display: block;
  position: relative;
  overflow: hidden;
  background: #f1f3f4;
  border-radius: 8px;
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shimmer 1.25s infinite;
}
.skeleton--title {
  width: 120px;
  height: 32px;
  margin-bottom: 16px;
}
.skeleton--provider-info {
  width: 200px;
  height: 20px;
}
.skeleton--sync-info {
  width: 140px;
  height: 16px;
}
.skeleton--refresh-button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-top: 8px;
}
.skeleton--date {
  width: 80px;
  height: 16px;
}
.skeleton--time {
  width: 100px;
  height: 14px;
}
.skeleton--event-title {
  width: 280px;
  height: 20px;
}
.skeleton--location {
  width: 180px;
  height: 16px;
}
.skeleton--avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.skeleton--attendee-count {
  width: 80px;
  height: 16px;
}
.skeleton--status {
  width: 100px;
  height: 16px;
}
.skeleton--join-button {
  width: 80px;
  height: 36px;
  border-radius: 6px;
}
.skeleton--menu-button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .skeleton--event-title {
    width: 240px;
  }
  .skeleton--location {
    width: 160px;
  }
}
@media (max-width: 480px) {
  .skeleton--event-title {
    width: 200px;
  }
  .skeleton--location {
    width: 140px;
  }
  .skeleton--provider-info {
    width: 160px;
  }
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .events-skeleton {
    animation: none;
  }
  .skeleton::after {
    animation: none;
    background: #e9ecef;
  }
}
@media (prefers-contrast: high) {
  .skeleton {
    background: #d1d5db;
  }
  .skeleton::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  }
}
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  pointer-events: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  word-wrap: break-word;
}
.toast--visible {
  transform: translateX(0);
  opacity: 1;
}
.toast--exiting {
  transform: translateX(100%);
  opacity: 0;
}
.toast--success {
  border-left: 4px solid #10b981;
}
.toast--success .toast__icon {
  color: #10b981;
}
.toast--error {
  border-left: 4px solid #ef4444;
}
.toast--error .toast__icon {
  color: #ef4444;
}
.toast--warning {
  border-left: 4px solid #f59e0b;
}
.toast--warning .toast__icon {
  color: #f59e0b;
}
.toast--info {
  border-left: 4px solid #3b82f6;
}
.toast--info .toast__icon {
  color: #3b82f6;
}
.toast__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.toast__icon .toast-icon {
  width: 100%;
  height: 100%;
}
.toast__content {
  flex: 1;
  min-width: 0;
}
.toast__title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 4px;
}
.toast__message {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}
.toast__action {
  flex-shrink: 0;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.toast__action:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}
.toast__action:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}
.toast__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-top: 2px;
  margin-left: 8px;
}
.toast__close:hover {
  color: #6b7280;
  background: #f3f4f6;
}
.toast__close:focus {
  outline: none;
  color: #374151;
  background: #e5e7eb;
}
.toast__close svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .toast {
    padding: 14px;
    gap: 10px;
    border-radius: 8px;
  }
  .toast__title {
    font-size: 13px;
  }
  .toast__message {
    font-size: 12px;
  }
  .toast__action {
    padding: 4px 8px;
    font-size: 11px;
  }
  .toast__icon {
    width: 18px;
    height: 18px;
  }
  .toast__close {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-contrast: high) {
  .toast {
    border-width: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .toast--success {
    border-left-width: 6px;
  }
  .toast--error {
    border-left-width: 6px;
  }
  .toast--warning {
    border-left-width: 6px;
  }
  .toast--info {
    border-left-width: 6px;
  }
  .toast__title {
    color: #000000;
  }
  .toast__message {
    color: #374151;
  }
  .toast__close {
    color: #000000;
  }
  .toast__close:hover {
    background: #000000;
    color: #ffffff;
  }
}
@media (prefers-reduced-motion: reduce) {
  .toast {
    transition: opacity 0.2s ease;
  }
  .toast--visible {
    transform: translateX(0);
  }
  .toast--exiting {
    transform: translateX(0);
  }
}
.toast__action:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}
.toast__close:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}

@media (prefers-color-scheme: dark) {
  .toast {
    background: #1f2937;
    border-color: #374151;
    color: #f9fafb;
  }
  .toast__title {
    color: #f9fafb;
  }
  .toast__message {
    color: #d1d5db;
  }
  .toast__action {
    color: #d1d5db;
    border-color: #4b5563;
  }
  .toast__action:hover {
    background: #374151;
    border-color: #6b7280;
  }
  .toast__close {
    color: #9ca3af;
  }
  .toast__close:hover {
    color: #d1d5db;
    background: #374151;
  }
}
.alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  margin: 10px;
}
.alert__icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.alert__content {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.alert__info {
  display: flex;
  align-items: center;
  color: inherit;
  cursor: help;
  position: relative;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.alert__info:hover {
  opacity: 1;
}
.alert__info[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 4px;
  white-space: pre-wrap;
  max-width: 250px;
  width: max-content;
  z-index: 100;
  pointer-events: none;
  font-weight: 400;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.alert--success {
  background: #DCF1E0;
  color: #066A18;
  border: 1px solid #72C882;
}
.alert--error {
  background: #F7DCDE;
  color: #85050F;
  border: 1px solid #DF727A;
}
.alert--warning {
  background: #FEF6DB;
  color: #A77E00;
  border: 1px solid #FDD96D;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0a0e1a;
}

* {
  box-sizing: border-box;
}

#LandingPage {
  background-color: white;
  min-height: 100vh;
}
#LandingPage .home {
  background-color: white;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
  overflow-x: hidden;
}

.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.spinner-dual {
  width: 50px;
  height: 50px;
  border: 4px solid transparent;
  border-top: 4px solid #142B53;
  border-bottom: 4px solid #142B53;
  border-radius: 50%;
  animation: spin 0.8s ease-in-out infinite;
  margin: auto;
}

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

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