/* AI WooCommerce Search Styles */

/* Minimális stílusok - a sablon alapértelmezett megjelenítését használjuk */
.ai-woo-search-container h1 {
    margin-bottom: 1em;
    text-align: center;
}

/* Chat alapú kereső stílusok */
.ai-woo-chat-container {
    width: 100%;
    margin: 0 auto 2em;
    border: none;
    overflow: hidden;
}

.ai-woo-chat-welcome {
    padding: 1.5em;
    position: relative;
}

/* Új beszélgetés gomb */
.ai-woo-chat-reset {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-woo-chat-reset:hover {
    background-color: #e0e0e0;
}

.ai-woo-chat-welcome p {
    margin: 0.5em 0;
    font-size: 1.1em;
}

.ai-woo-chat-input {
    display: flex;
    padding: 1em;

}

.ai-woo-chat-input input {
    flex: 1;
    padding: 0.8em 1em;
    border-bottom: 1px solid;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    font-size: 1em;
    margin-right: 0.5em;
}

.ai-woo-chat-input button {
    padding: 0.8em 1.2em;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.ai-woo-chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1em;
    overflow-x: hidden;
}

.ai-woo-message {
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
}

.ai-woo-message.user {
    align-items: flex-end;
}

.ai-woo-message.assistant {
    align-items: flex-start;
}

/* Chat üzenet fejléc stílusok */
.ai-woo-message-header {
    font-size: 0.85em;
    margin-bottom: 0.3em;
    padding: 0 0.5em;
}

.ai-woo-message.user .ai-woo-message-header {
    text-align: right;
}

.ai-woo-message-time {
    color: #777;
    margin-left: 0.5em;
    font-size: 0.9em;
}

.ai-woo-message-content {
    max-width: 80%;
    padding: 0.8em 1em;
    border-radius: 12px;
    border-bottom: 1px solid;
    border-top: none;
    border-left: none;
    border-right: none;
}

.ai-woo-message.user .ai-woo-message-content {
    border-color: #c0d8ff;
}

.ai-woo-message.assistant .ai-woo-message-content {

    border-color: #e0e0e0;
}

/* Ajánlott termékek felirat */
.ai-woo-recommendations-title {
    text-align: center;
    margin: 2em 0 1em;
    font-size: 1.5em;
    font-weight: 500;
}

/* Termék konténer stílusok */
.ai-woo-search-products-container {
    transition: opacity 0.3s ease;
}

.ai-woo-search-products-container.loading {
    opacity: 0.5;
}

/* Lapozás elrejtése */
.ai-woo-search-container .woocommerce-pagination {
    display: none !important;
}
