/* Carousel Styles */
.carousel-module__carouselOverlay___Y6LQO {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    background-color: #2D3748;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    color: white;
}

.carousel-module__carouselOverlay___Y6LQO.carousel-module__hidden___VORv0 {
    display: none;
}

.carousel-module__carouselContainer___DIHrr {
    background-color: transparent;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    overflow-y: auto;
}

.carousel-module__carouselPage___cQCNT {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1;
    justify-content: center;
}

.carousel-module__carouselPage___cQCNT.carousel-module__active___d00ER {
    display: flex;
}

.carousel-module__carouselImage___vROrn {
    width: 70%;
    max-width: 300px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 1.2s ease-in;
}

.carousel-module__bootingTitle___bGe-A {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 1s ease-out;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.carousel-module__logosContainer___hJAEO {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-module__logoImg___-Bg1H {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin: 0 15px;
}

.carousel-module__page3ContentWrapper___G3VoY {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-module__carouselBubbles___J82xd {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

.carousel-module__carouselBubble___VtSVx {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #A0AEC0;
    margin: 0 5px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.carousel-module__carouselBubble___VtSVx:hover {
    background-color: #68D391;
}

.carousel-module__carouselBubble___VtSVx.carousel-module__active___d00ER {
    background-color: var(--primary-green);
}

.carousel-module__carouselNavigation___itDTq {
    width: 90%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 30px;
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

.carousel-module__carouselButton___3juq7 {
    padding: 15px 30px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: var(--primary-green);
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.carousel-module__carouselButton___3juq7:hover {
    background-color: #388E3C;
}

.carousel-module__carouselLink___iZMhF {
    color: #cacacadb;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

.carousel-module__carouselLink___iZMhF:hover {
    color: #b0b0b0;
}

.carousel-module__privacyLink___S3iud {
    font-size: 12px;
    color: var(--primary-green);
    text-decoration: underline;
    cursor: pointer;
    margin-top: 15px;
    opacity: 1;
    transition: opacity 1.2s ease-in;
}

.carousel-module__bootingDots___eb-DZ::after {
    content: '...';
    animation: carousel-module__loadingDots___sQLou 1.5s infinite;
    display: inline-block;
    width: 24px;
}

@keyframes carousel-module__loadingDots___sQLou {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
    100% { content: '.'; }
}

/* Privacy Modal Styles */
.carousel-module__privacyModalOverlay___h2Fil {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
}

.carousel-module__privacyModalContent___qhCgy {
    background-color: white;
    padding: 25px;
    padding-top: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-align: left;
    position: relative;
}

.carousel-module__privacyModalContent___qhCgy h3 {
    color: var(--dark-grey);
    font-size: 18px;
    margin-bottom: 10px;
}

.carousel-module__privacyModalContent___qhCgy p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.carousel-module__privacyModalCloseButton___2sU3Z {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    color: white;
    background-color: var(--primary-green);
    cursor: pointer;
}

.carousel-module__privacyModalCloseX___Qh8Ka {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.carousel-module__privacyModalCloseX___Qh8Ka:hover {
    color: #333;
}

/* Map Modal Styles */
.carousel-module__mapModalOverlay___sAMvQ {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3500;
}

.carousel-module__mapModalContent___SV1FG {
    position: relative;
    padding: 10px;
    background-color: #2D3748;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.carousel-module__mapModalImage___zprvy {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.carousel-module__mapModalCloseX___37peb {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    cursor: pointer;
    line-height: 1;
    text-decoration: none;
}

.carousel-module__mapModalCloseX___37peb:hover {
    background-color: rgba(0,0,0,0.7);
}/* Simple fade-in classes for text elements */
.common-text-module__carouselTitle___rJo1F {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-align: center;
    opacity: 0; /* Start invisible */
    transition: opacity 0.5s ease-in .2s;
    font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Class to trigger fade-in for titles */
.common-text-module__carouselTitleFadeIn___Lwi9K {
    opacity: 1;
}

.common-text-module__carouselText___QPm1W {
    color: rgb(226, 232, 240);
    font-size: 18px;
    line-height: 28.8px;
    margin: 0 0 25px 0;
    max-width: 90%;
    text-align: center;
    opacity: 0; /* Start invisible */
    transition: opacity 1.5s ease-in .7s;
    font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Class to trigger fade-in for paragraphs */
.common-text-module__carouselTextFadeIn___fCBV8 {
    opacity: 1;
}

.common-text-module__carouselLine___Iz5vc {
    display: block;
    color: rgb(226, 232, 240);
    font-size: 18px;
    line-height: 28.8px;
    margin: 0 0 15px 0;
    text-align: center;
    opacity: 0; /* Start invisible */
    transition: opacity 1.5s ease-in 1.1s;
    font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Class to trigger fade-in for spans */
.common-text-module__carouselLineFadeIn___AXT1l {
    opacity: 1;
}/* Scan Page Styles */
.activities-module__scanPage___pter1 {
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    background-color: #eaf4eb;
    box-sizing: border-box;
    position: relative;
}

.activities-module__logo___tmFvF {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.activities-module__poweredBy___vzv64 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    z-index: 10;
}

.activities-module__poweredByText___-o9H6 {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.activities-module__ridfLogo___lEbcJ {
    height: 40px;
    width: auto;
}

.activities-module__secondLogo___wSHSl {
    height: 30px;
    width: auto;
}

/* Language Selector Styles */
.activities-module__languageSelector___2og48 {
    position: relative;
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.activities-module__languageButton___TGPkM {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.activities-module__languageButton___TGPkM:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.activities-module__languageFlag___Nsp-J {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.activities-module__languageDropdown___wOvgJ {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.activities-module__languageOption___Ibxd8 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.activities-module__languageOption___Ibxd8:hover {
    background-color: #f5f5f5;
}

.activities-module__languageOption___Ibxd8 .activities-module__languageFlag___Nsp-J {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.activities-module__buttonContainer___pnLEo {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.activities-module__actionButton___HF1cq {
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.activities-module__actionButton___HF1cq:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.activities-module__scanTrash___vXsp2 {
    background-color: var(--primary-green);
}

.activities-module__scanObject___PX4Lg {
    background-color: var(--dark-grey);
}

.activities-module__history___bYLX1 {
    background-color: #517da2;
    margin-top: 10px;
}

.activities-module__policy___UtU1l {
    background-color: #6c757d;
}

.activities-module__privacyLink___BgXAh {
    font-size: 12px;
    color: var(--primary-green);
    text-decoration: underline;
    cursor: pointer;
    margin: 2px 0 5px 0;
    opacity: 1;
    transition: all 0.2s ease-in;
    text-align: center;
    display: block;
    padding: 4px 12px;
    border-radius: 7px;
    background-color: rgb(234 244 235);
    border: 0px solid rgba(76, 175, 80, 0.2);
}

.activities-module__privacyLink___BgXAh:hover {
    background-color: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-1px);
}

.activities-module__buttonIcon___BDerI {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}/* Chat Page Styles */
.chat-module__chatPage___DTEnq {
    display: flex;
    height: 100svh;
    flex-direction: column;
    background-color: #e7e7e7;
    position: relative;
    overflow: hidden;
}

.chat-module__chatContainer___PB8Ox {
    max-width: 450px;
    margin: 0 auto;
    height: 100svh;
    display: flex;
    flex-direction: column;
    background-color: #e7e7e7;
    position: relative;
    overflow: hidden;
}

.chat-module__chatHeader___L3001 {
    background-color: #517da2;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 450px;
    z-index: 100;
}

.chat-module__backButton___QE2uc {
    color: white;
    background: none;
    border: none;
    margin-right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.chat-module__chatTitle___R0aRR {
    font-size: 17px;
    font-weight: 500;
    min-width: 120px;
    text-align: right;
    display: flex;
    justify-content: right;
    align-items: center;
    margin-right: 60px;
    margin-left: 40px;
}

.chat-module__clearButton___GhhoD {
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
}

.chat-module__clearButton___GhhoD:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Language Selector Styles */
.chat-module__languageSelector___RftgT {
    position: relative;
    margin: 0 10px;
}

.chat-module__languageButton___Vfl96 {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-module__languageButton___Vfl96:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.chat-module__languageFlag___rewQm {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.chat-module__languageDropdown___ZCiC7 {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 4px;
}

.chat-module__languageOption___2JMfG {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.chat-module__languageOption___2JMfG:hover {
    background-color: #f5f5f5;
}

.chat-module__languageOption___2JMfG .chat-module__languageFlag___rewQm {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.chat-module__chatMessages___PafUm {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #e7e7e7;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    bottom: 60px;
    width: 100%;
    max-width: 450px;
    z-index: 1;
}

.chat-module__message___mwFO7 {
    max-width: 80%;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    position: relative;
    word-wrap: break-word;
}

.chat-module__message___mwFO7.chat-module__received___-t3h3 {
    background-color: white;
    margin-right: auto;
    border-top-left-radius: 3px;
}

.chat-module__message___mwFO7.chat-module__sent___Jh6GI {
    background-color: #e3f3d9;
    margin-left: auto;
    border-top-right-radius: 3px;
}

.chat-module__messageImage___d4lgx {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    display: block;
}

.chat-module__message___mwFO7.chat-module__sent___Jh6GI .chat-module__messageImage___d4lgx {
    margin-left: auto;
}

.chat-module__message___mwFO7.chat-module__received___-t3h3 .chat-module__messageImage___d4lgx {
    margin-right: auto;
}

.chat-module__chatInput___24UCD {
    padding: 10px;
    background-color: #f6f6f6;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-start;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 450px;
    z-index: 100;
}

.chat-module__messageInputWrapper___XCnUA {
    flex-grow: 1;
    position: relative;
    margin-right: 8px;
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
}

.chat-module__messageInput___q2K47 {
    flex-grow: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 18px;
    margin-right: 8px;
    background-color: white;
    font-size: 16px;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
}

.chat-module__sendButton___GC3-u {
    background-color: #517da2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-module__sendButton___GC3-u.chat-module__buttonDisabled___QUBHw {
    background-color: #cccccc !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

/* Feedback Menu Styles */
.chat-module__feedbackMenu___lvgbg {
    background-color: white;
    padding: 12px;
    border-radius: 10px;
    margin: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chat-module__feedbackQuestion___y0WOS {
    margin-bottom: 10px;
    color: var(--dark-grey);
    font-weight: 500;
}

.chat-module__feedbackButtons___0LG-m {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.chat-module__feedbackButton___kQ-HT {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-module__feedbackButton___kQ-HT.chat-module__yes___SBfgw {
    background-color: var(--primary-green);
    color: white;
}

.chat-module__feedbackButton___kQ-HT.chat-module__no___kRInk {
    background-color: #f0f0f0;
    color: var(--dark-grey);
}

.chat-module__feedbackButton___kQ-HT.chat-module__tooDetailed___3HPJV {
    background-color: var(--light-green);
    color: var(--dark-grey);
}

.chat-module__feedbackButton___kQ-HT:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Loading Overlay Styles */
.chat-module__loadingOverlay___jT-5q {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.chat-module__loadingImage___ciE1D {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    opacity: 0.8;
}

.chat-module__loadingMessage___G4dMi {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chat-module__loadingDots___CU94k {
    display: inline-block;
    width: 24px;
    text-align: left;
}

.chat-module__loadingDots___CU94k::after {
    content: '...';
    animation: chat-module__loadingDots___CU94k 1.5s infinite;
    display: inline-block;
    width: 24px;
}

@keyframes chat-module__loadingDots___CU94k {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
    100% { content: '.'; }
}

@media (max-width: 450px) {
    .chat-module__chatContainer___PB8Ox {
        height: 100vh;
        width: 100vw;
    }
}/* Global styles only - CSS modules are imported by components */

/* CSS Reset for consistent full-screen behavior */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#root {
  height: 100vh; /* Fallback for older browsers */
  height: 100svh;
  width: 100vw;
  margin: 0;
  padding: 0;
}

.app {
  height: 100vh; /* Fallback for older browsers */
  height: 100svh;
  max-height: 100vh; /* Fallback for older browsers */
  max-height: 100svh;
  overflow: hidden;
  position: relative;
}:root {
    --primary-green: #4CAF50;
    --dark-grey: #333333;
    --light-green: #E8F5E9;
}

.common-module__app___-heMW {
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e7e7e7;
    margin: 0;
    padding: 0;
}