﻿html,
body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    /* Better fallback font */
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    color: whitesmoke;
    font-family: Segoe UI, sans-serif;
    font-size: 1rem;
    /* Scalable font size */
    line-height: 1.5rem;
    margin: 0;
    padding: 0 1rem;
    /* Responsive padding */
}

#banner {
    align-items: center;
    background-color: #061c35;
    display: flex;
    height: 3rem;
    /* Responsive height */
    justify-content: center;
    /* Center the content */
}

#webchat {
    height: calc(100vh - 3rem);
    /* Adjust the height based on banner height */
    overflow: hidden;
    position: fixed;
    top: 3rem;
    /* Adjust to match banner height */
    width: 100%;
    /* Full width */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 0.875rem;
        /* Smaller font size for mobile */
    }

    #banner {
        height: 2.5rem;
        /* Adjust banner height for mobile */
    }

    #webchat {
        top: 2.5rem;
        /* Adjust to match banner height */
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    h1 {
        font-size: 1rem;
        /* Adjust font size for tablet */
    }

    #banner {
        height: 3rem;
        /* Adjust banner height for tablets */
    }

    #webchat {
        top: 3rem;
        /* Adjust to match banner height */
    }
}



.webchat__suggested-action{
    color: #061c35 !important;
    border-color:#061c35 !important;
}