/* PDF Chat Plugin Styles */

#pdf-chat-container {
    max-width: 100%;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    background-color: #fff;
	border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 20px;
}

#pdfFile {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#parsePdfButton,
#sendToOpenAIButton {
    display: inline-block;
    background-color: #0171B9;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#parsePdfButton:hover,
#sendToOpenAIButton:hover {
    background-color: #45a049;
}

#output {
    margin-top: 20px;
    padding: 10px;
    background-color: #e9e9e9;
    border-radius: 4px;
    font-style: italic;
}

#chat-interface {
    margin-top: 20px;
}

#chat-input {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    box-sizing: border-box;
}

#chat-output {
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
}

#chat-output p {
    margin: 0 0 10px 0;
    padding: 5px;
    border-radius: 4px;
}

#chat-output p:nth-child(odd) {
    background-color: #f0f0f0;
}

#chat-output strong {
    color: #4CAF50;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    #pdf-chat-container {
        padding: 10px;
    }

    #parsePdfButton,
    #sendToOpenAIButton {
        width: 100%;
        margin-bottom: 10px;
    }
}