/*!
 * © 2025 Engage Speak. All rights reserved.
 *
 * This CSS file is part of the proprietary Engage Speak web application.
 * Unauthorized copying, distribution, or modification of this file,
 * via any medium, is strictly prohibited.
 *
 */
.fade-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.fade-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fade 20s infinite ease-in-out;
}

/* Each image has delay */
.fade-image:nth-child(1) {
    animation-delay: 0s;
}

.fade-image:nth-child(2) {
    animation-delay: 5s;
}

.fade-image:nth-child(3) {
    animation-delay: 10s;
}

.fade-image:nth-child(4) {
    animation-delay: 15s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


.loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3b82f6;
  animation: wave 1.2s ease-in-out infinite;
}
#app-preloader {
  transition: opacity 0.4s ease;
  opacity: 1;
}

#app-preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes wave {
  0% {
    box-shadow:
      0 0 0 0px rgba(59, 130, 246, 1),
      0 0 0 10px rgba(59, 130, 246, 0.2),
      0 0 0 20px rgba(59, 130, 246, 0.1),
      0 0 0 30px rgba(59, 130, 246, 0.05);
  }
  100% {
    box-shadow:
      0 0 0 40px rgba(59, 130, 246, 0),
      0 0 0 30px rgba(59, 130, 246, 0.05),
      0 0 0 20px rgba(59, 130, 246, 0.1),
      0 0 0 10px rgba(59, 130, 246, 0.2),
      0 0 0 0px rgba(59, 130, 246, 1);
  }
}

/* Add this to your CSS */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Meeting Not Started Page - Unique Styles */
#meeting-error-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.meeting-error-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.meeting-error-title {
    color: #d32f2f;
    margin-top: 0;
    font-size: 24px;
}

.meeting-error-countdown {
    font-size: 18px;
    margin: 20px 0;
    font-weight: 600;
    color: #d32f2f;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-error-button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.meeting-error-button:hover {
    background-color: #b71c1c;
}

.meeting-error-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d32f2f;
}

.meeting-error-note {
    font-size: 14px;
    color: #666;
    margin-top: 30px;
    font-style: italic;
}
.driverjs-theme.driver-popover {
    background-color: #1f2937;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.driverjs-theme .driver-popover-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #facc15;
}
.driverjs-theme .driver-popover-description {
    color: #e5e7eb;
}
.driverjs-theme .driver-popover-footer button {
    text-align: center;
    background-color: #fff;
    color: #000;
    text-shadow: none;
    border-radius: 6px;
}
.driver-popover-navigation-btns button+button {
    margin-left: 4px;
}
.driverjs-theme .driver-popover-footer button:hover {
    background-color: #ccc;
}
.driverjs-theme .driver-popover-close-btn {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}
.driverjs-theme .driver-popover-close-btn:hover {
    color: #ccc;
    background: transparent;
}
.left-side-animation {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-slide-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    width: 100%;
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}