.chat-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5px; /* Prevent edge clipping on mobile */
}

.chat-box {
    max-height: 60vh;
    height: 60vh;
    width: 100%;
    overflow-y: auto;
    padding: 1px;
    background-color: #ffffff;
    margin-bottom: 5px;
}


.chat-message {
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
}

.user-message {
    background-color: #eff0f0;
    text-align: right;
}

.bot-message {
    background-color: #cfe4f1;
}

.input-group {
    width: 100%;
}

.typing {
    font-size: 14px;
    color: #aaa;
    padding: 10px;
}

.typing-indicator {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    animation: dot-typing 1s steps(10, end) infinite;
    width: 4ch;
}

.btn-primary {
    background-color: #4490bf;
    border-color: #4490bf;
}

.btn-danger {
    margin-left: 10px;
}

.donation-button {
    text-align: center;
}

.quote-button {
    position: absolute;
    display: none;
    padding: 5px 10px;
    background-color: #29abe0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Unique typing effect for the animated header */
.typing-header {
    padding-top: 17px;
    padding-bottom: 17px;
    height: auto;
    font-weight: 600;
    font-family: 'Poppins', sans-serif; /* Change to your desired font */
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #444;
    animation: header-typing 3s steps(30, end), blink 0.7s step-end infinite;
}


/* Bubbles for the suggested questions

.chat-message.bot-message {
    background-color: #f8f9fa;
    padding: 10px;
    margin: 5px 0;
    border-radius: 10px;
}

.question-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.question-bubble {
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.question-bubble:hover {
    background-color: #0056b3;
}

 */

.question-bubble {
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}


/* Renamed this for the typing dots animation */
@keyframes dot-typing {
    from { width: 0; }
    to { width: 4ch; }
}

h1 {
    font-size: 2.2rem;
    text-align: center;
}


/* Adjustments for mobile devices */
@media (max-width: 600px) {
    h1 {
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .typing-header {
    	font-weight: 400;
    	font-size: 1.6rem;
    }
}


@keyframes header-typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: #444 }
}

