#jc-chat-container {
    max-width: 600px !important;
    margin: 40px auto !important;
    padding: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 0 15px rgba(0,0,0,0.1) !important;
    background: #fffbe6 !important;
}

#jc-chat-window {
    min-height: 300px !important;
    max-height: 500px !important;
    overflow-y: auto !important;
    border: 1px solid #ccc !important;
    padding: 10px !important;
    margin-bottom: 10px !important;
    background: #fdfdfd !important;
}

#jc-user-input {
    width: 75% !important;
    padding: 10px !important;
    margin-right: 5px !important;
}

#jc-send-button {
    padding: 10px 20px !important;
    background: #5e3b0c !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
}

/* Divine styling for Jesus's responses with higher specificity */
#jc-chat-window .jc-jesus-response {
    background: linear-gradient(135deg, #f8f4e6 0%, #fff9e6 100%) !important;
    border-left: 4px solid #d4af37 !important;
    padding: 15px !important;
    margin: 10px 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2) !important;
    font-family: 'Georgia', 'Times New Roman', serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #2c1810 !important;
    position: relative !important;
}

#jc-chat-window .jc-jesus-response::before {
    content: '✨' !important;
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    font-size: 18px !important;
    opacity: 0.7 !important;
}

#jc-chat-window .jc-jesus-response strong {
    color: #8b4513 !important;
    font-weight: bold !important;
    text-shadow: 0 1px 2px rgba(139, 69, 19, 0.3) !important;
    font-size: 17px !important;
    font-family: 'Georgia', 'Times New Roman', serif !important;
}

/* User message styling for contrast with higher specificity */
#jc-chat-window .jc-user-message {
    background: #f5f5f5 !important;
    border-left: 3px solid #666 !important;
    padding: 10px !important;
    margin: 8px 0 !important;
    border-radius: 6px !important;
    font-family: 'Arial', sans-serif !important;
    color: #333 !important;
}

#jc-chat-window .jc-user-message strong {
    color: #444 !important;
    font-family: 'Arial', sans-serif !important;
}