:root {
    --gptplane-chat-bot-primary-background-color: rgb(27, 93, 126);
    --gptplane-chat-bot-primary-background-hover-color: rgb(44, 102, 157);
    --gptplane-chat-bot-primary-text-color: rgba(255,255,255);
    --gptplane-chat-bot-border-radius: 8px;
}


.GPTPlaneChatBotWindow {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    border-radius: var(--gptplane-chat-bot-border-radius);
    overflow: hidden;
    opacity: 1;
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .chat-container {
        padding: 10px;
    }
    
    .chat-header h1 {
        font-size: 1.5rem;
        padding: 10px 0;
    }
    
    .GPTPlaneChatBotWindow {
        border-radius: 0;
    }
}

.GPTPlaneChatBotWindowHeader {
    background-color: var(--gptplane-chat-bot-primary-background-color);
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-top-left-radius: var(--gptplane-chat-bot-border-radius);
    border-top-right-radius: var(--gptplane-chat-bot-border-radius);
}

.GPTPlaneChatBotWindowHeaderTitle {
	color: var(--gptplane-chat-bot-primary-text-color);
	font-weight: bold;
	font-size: 18px;
	font-family: Helvetica;
}

.GPTPlaneChatBotWindowHeaderCloseButton {
	margin-left: auto;
	color: var(--gptplane-chat-bot-primary-text-color);
	cursor: pointer;
	border: 1px solid var(--gptplane-chat-bot-primary-background-color);
	border-radius: 5px;
	line-height: 10px;
}

.GPTPlaneChatBotWindowHeaderCloseButton:hover {
	border: 1px solid var(--gptplane-chat-bot-primary-text-color);
}

.GPTPlaneChatBotWindowIFrame {
    background-color: #ffffff;
    width: 100%;
    height: calc(100% - 54px); /* Adjust based on header height */
    border: 0;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    border-bottom-left-radius: var(--gptplane-chat-bot-border-radius);
    border-bottom-right-radius: var(--gptplane-chat-bot-border-radius);
}

