.chat-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    padding: 24px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.chat-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.message {
    border-radius: 18px;
    padding: 12px 16px;
    max-width: 75%;
    margin-bottom: 10px;
}

.user-msg {
    background-color: #D9ECFF;
    align-self: flex-end;
    text-align: right;
    font-size: 15px;
    color: #404E6B;
}

.bot-msg {
    background: #006CD9;
    color: #F2F9FF;
    align-self: flex-start;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.progress-line {
    height: 2px;
    background-color: transparent;
    border-radius: 2px;
    overflow: hidden;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: -2px;
    z-index: 1;
    position: relative;
}

.progress-fill {
    width: 20%; /* Change this to reflect actual progress (e.g., via JS) */
    height: 100%;
    background: linear-gradient(90deg, #007FFF, #D9ECFF);
    transition: width 0.3s ease-in-out;
}

@keyframes loading {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.chat-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #E5F2FF;
    border-radius: 999px;
    padding: 6px 12px;
    background-color: white;
    height: 55px;
}

.chat-input {
    border: none;
    outline: none;
    flex: 1;
    padding-left: 12px;
    font-size: 14px;
}

.chat-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease-in-out;
}

.chat-icon:hover {
    background-color: #eef6ff;
}

.mic-btn {
    margin-right: 8px;
}

.chat-footer {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    color: #404E6B;
    gap: 10px;
    line-height: 1.5;
    margin-top: 15px;
    margin-left: 25px;
    margin-right: 25px;
}

.chat-footer input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: #007FFF; /* Customize checkbox color */
    margin-top: 2px;
}

.chat-footer label {
    text-align: left;
    color: #404E6B;
    font-size: 12px;
}

.chat-footer label a {
    color: #007FFF;
    text-decoration: underline;
}

