body {
    /* background: linear-gradient(180deg, #1a2b4b 0%, #0c1829 100%); */
    /* background: url(../assets/wp.jpg); */
    /* background-size: cover; */
    /* background-position: center; */
    max-height: 100vh;
    color: black;
    font-family: system-ui, -apple-system, sans-serif;
    padding-bottom: 80px; /* Add padding to account for fixed menu */
}

.listening-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.message-bubble {
    background: rgba(26, 43, 75, 0.6);
    backdrop-filter: blur(10px);
}

#mainText {
    color: rgb(160 160 176 / var(--tw-text-opacity, 1));
}

#subText {
    color: rgb(160 160 176 / var(--tw-text-opacity, 1));
    display: none;
}

.bot-avatar {
    background: linear-gradient(135deg, #2d4a7c 0%, #1a2b4b 100%);
}

.quote-card {
    background-color: #F5E6D8;
    border-radius: 16px;
}

.bottom-nav {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.ai-button {
    background: radial-gradient(circle at center, #2995f2 0%, #0b8588 100%);    
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
} 

.hide {
    display: none !important;
}

.message-input-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 13vh;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 90%;
    padding: 10px;
    border-radius: 20px;
    background: rgba(16, 14, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-input {
    flex-grow: 1;
    resize: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 16px;
    outline: none;
    padding: 10px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 45px;
    max-height: 200px;
}

.send-button {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    color: white;
    transition: opacity 0.3s;
}

.send-button:hover {
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.skeleton-loader {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.skeleton-text {
    flex-grow: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}


@keyframes fire {
    0% {
        transform: scale(0.5);
        opacity: 1;
        }
    100% {
        transform: scale(5);
        opacity: 0;
    }
}

.fire-animation {
    animation: fire 4s linear infinite;
}

#bgAnimation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
    z-index: -2;
    /* filter: sepia(10%) saturate(300%) brightness(70%) hue-rotate(180deg); */
}

/* Add overlay for the video */
#bgAnimation::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background: linear-gradient(180deg, rgba(26, 43, 75, 0.8) 0%, rgba(12, 24, 41, 0.8) 100%); */
    z-index: 1;
    pointer-events: none;
}

#bgOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background: linear-gradient(180deg, rgba(26, 43, 75, 0.8) 0%, rgba(12, 24, 41, 0.8) 100%); */
    pointer-events: none;
    z-index: -1;
}

.user-message {
    position: relative;
    z-index: 1000;
}

.bot-message {
    position: relative;
    z-index: -1;
}

.language-menu {
    position: fixed;
    top: 10%;
    right: -50px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

#langText {
    color: green;
    font-weight: bold;
    margin-top: 40px;
}

.language-menu.show {
    display: block;
}

.language-menu h2 {
    margin-bottom: 10px;
}

.language-menu label {
    display: block;
    margin-top: 10px;
}

.language-menu select {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 11px;
    color: #333;
    font-weight: bold;
}

.powered-by-logo {
    width: 35px; /* Adjust the size as needed */
    margin-left: 5px;
    margin-top: -12px;
}

.powered-by-logo-two {
    width: 60px; /* Adjust the size as needed */
    margin-left: 5px;
}

p#subtitleText {
    font-size: 16px !important;
    line-height: 25px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px !important;
    display: none;
}

div#loadingScreen {
    margin-top: -70px;
}