/* Ellis Assistant Window Styles */

/* Chatbot FAB Button Positioning */
.ellis-chatbot-fab {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999 !important;
}

.ellis-assistant-window {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 800px;
    height: 750px;
    max-height: calc(100vh - 150px);
    background: white;
    border: 1px solid var(--divider-grey, #e0e0e0);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ellis-assistant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--divider-grey, #e0e0e0);
    background: var(--dark-green, #003F2D);
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}

.ellis-assistant-header h6 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0.15px;
}

.ellis-close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.87);
    transition: background-color 0.2s ease;
}

.ellis-close-button:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.ellis-close-button svg {
    width: 24px;
    height: 24px;
}

.ellis-assistant-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.ellis-container {
    flex: 1;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    color: var(--Text-Dark-Text-Dark, #1A1A1A);
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    min-height: 100%;
}

.ellis-welcome-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--dark-green, #003F2D);
    margin: 0 0 24px 0;
    max-width: 100%;
}

.ellis-description-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-grey, #5E6A6C);
    margin: 0 0 32px 0;
    max-width: 100%;
}

.ellis-suggested-prompts {
    width: 100%;
    margin-top: 16px;
}

.ellis-suggested-prompts h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-grey, #5E6A6C);
    margin: 0 0 16px 0;
    text-align: center;
}

.ellis-prompt-card {
    background: #FFFFFF;
    border: 1px solid var(--divider-grey, #e0e0e0);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.ellis-prompt-card:hover {
    border-color: var(--dark-green, #003F2D);
    box-shadow: 0 4px 12px rgba(0, 63, 45, 0.12);
    transform: translateY(-2px);
}

.ellis-prompt-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ellis-prompt-icon {
    font-size: 20px;
    color: var(--dark-green, #003F2D);
}

.ellis-prompt-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--Text-Dark-Text-Dark, #1A1A1A);
    margin: 0;
}

.ellis-prompt-description {
    font-size: 15px;
    color: var(--light-grey, #5E6A6C);
    margin: 0;
    line-height: 1.5;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .ellis-assistant-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .ellis-assistant-header {
        border-radius: 0;
        padding: 16px 20px;
    }

    .ellis-assistant-header h6 {
        font-size: 18px;
    }

    .ellis-container {
        padding: 32px 20px;
    }

    .ellis-welcome-text {
        font-size: 22px;
    }

    .ellis-description-text {
        font-size: 16px;
    }

    .ellis-prompt-card {
        padding: 16px;
    }

    .ellis-prompt-title {
        font-size: 15px;
    }

    .ellis-prompt-description {
        font-size: 14px;
    }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .ellis-assistant-window {
        width: 700px;
        height: 750px;
        right: 20px;
        bottom: 90px;
    }

    .ellis-container {
        padding: 40px 28px;
    }

    .ellis-welcome-text {
        font-size: 24px;
    }
}

/* Large screens */
@media (min-width: 1440px) {
    .ellis-assistant-window {
        width: 900px;
        height: 850px;
    }

    .ellis-container {
        padding: 56px 40px;
    }

    .ellis-welcome-text {
        font-size: 32px;
    }

    .ellis-description-text {
        font-size: 20px;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .ellis-assistant-window {
        width: 1000px;
        height: 900px;
    }

    .ellis-container {
        padding: 64px 48px;
    }

    .ellis-welcome-text {
        font-size: 36px;
    }

    .ellis-description-text {
        font-size: 22px;
    }
}
