.landing-view {
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    overflow-y: scroll;
    /*background: #fff;*/
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.5s ease-in-out;
    scrollbar-width: none;
}

.landing-view.transitioning {
    transform: translateX(-100%);
}

.landing-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

#landing-content {
    height: 100%;
}

.landing-chat-container {
    max-width: 600px;
    margin: 0 auto;
}

/* App View */
.app-view {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.app-view.active {
    opacity: 1;
    pointer-events: auto;
}

/* Chat Container Transitions */
#chat-container {
    transition: all 0.5s ease-in-out;
}

#chat-messages {
    transition: all 0.5s ease-in-out;
}

#landing-content {
    transition: all 0.5s ease-in-out;
}

#chat-container.landing-chat-container {
    max-width: 80vw;
    margin: 0 auto;
}

/* When moved to the app view */
.card-body #chat-container {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Dark mode support */
[data-bs-theme="dark"] .landing-view {
    background: var(--bs-dark);
    color: var(--bs-light);
}

/* Centered Specific styles */
.landing-content-centered {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
}

.tablender_logo-centered {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.data-engineer-centered {
    /*
    background: linear-gradient(94.76deg, #29b382 -10.66%, #3a89de 139.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    */
    font-size: 25pt;
    color: #2E2E2E;
    background: none;
    font-weight: bold;
}

#lead_text{
    color: #5F5F5F !important;
}

.lead-centered {
    font-weight: bold;
    font-size: 14pt;
}

.chat-messages-centered{
    display: none;
}
.input-group-centered{
    min-height: 175px;
    max-width: 800px;
    margin: 0 auto;
}

/* Chat Mode - Estado intermedio después de subir archivos */
.landing-view.chat-mode .tablender_logo-centered {
    max-width: 400px;
    margin-bottom: 1rem;
}

.landing-view.chat-mode .data-engineer-centered {
    font-size: 18pt;
    margin-bottom: 0.5rem;
}

.landing-view.chat-mode .lead-centered {
    font-size: 12pt;
    margin-bottom: 2rem;
}

.landing-view.chat-mode .landing-content {
    padding: 1.5rem;
}

.landing-view.chat-mode .landing-chat-container {
    max-width: 550px;
}

.landing-view.chat-mode #chat-container.landing-chat-container {
    height: 75vh;
    width: 80vw;
    max-width: 80vw;
}

.landing-view.chat-mode .chat-messages-centered {
    display: block;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    background: transparent !important;
    border-radius: 8px;
    scrollbar-width: none;

}

.landing-view.chat-mode #chat-messages {
    height: 55vh !important;
    max-height: 55vh !important;
    background: transparent !important;
    max-width: 900px;
    margin: 0 auto;
    scrollbar-width: none;
}

.landing-view.chat-mode .input-group-centered {
    min-height: 120px;
}

/* Hide elements in chat mode */
.landing-view.chat-mode #data_engineer {
    display: none;
}

.landing-view.chat-mode .example-prompts-container {
    display: none;
}

.landing-view.chat-mode #lead_text {
    display: none;
}

.landing-view.chat-mode #recent-items-view {
    display: none !important;
}

.landing-view.chat-mode #landing-content > .navbar-brand {
    margin-top: 1%;
}

/* Dark mode support for chat-mode */
[data-bs-theme="dark"] .landing-view.chat-mode .chat-messages-centered {
    background: rgba(255, 255, 255, 0.05);
}