/**
 * Chatbot Enhancer Styles
 */

/* Pre-Chat Form Styles */
.chatbot-enhancer-pre-chat-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.chatbot-enhancer-pre-chat-form h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.chatbot-enhancer-pre-chat-form .form-field {
    margin-bottom: 15px;
}

.chatbot-enhancer-pre-chat-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #444;
}

.chatbot-enhancer-pre-chat-form label .required {
    color: #d63638;
    margin-left: 3px;
}

.chatbot-enhancer-pre-chat-form input[type="text"],
.chatbot-enhancer-pre-chat-form input[type="email"],
.chatbot-enhancer-pre-chat-form input[type="tel"],
.chatbot-enhancer-pre-chat-form textarea,
.chatbot-enhancer-pre-chat-form select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    background-color: #fff;
}

.chatbot-enhancer-pre-chat-form textarea {
    height: 80px;
    resize: vertical;
}

.chatbot-enhancer-pre-chat-form select {
    height: 38px;
}

.chatbot-enhancer-pre-chat-form input:focus,
.chatbot-enhancer-pre-chat-form textarea:focus,
.chatbot-enhancer-pre-chat-form select:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: 2px solid transparent;
}

.chatbot-enhancer-pre-chat-form input.error,
.chatbot-enhancer-pre-chat-form textarea.error,
.chatbot-enhancer-pre-chat-form select.error {
    border-color: #d63638;
}

.chatbot-enhancer-pre-chat-form .form-error {
    color: #d63638;
    font-size: 12px;
    margin-top: 4px;
}

.chatbot-enhancer-pre-chat-form button {
    background-color: #2271b1;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.chatbot-enhancer-pre-chat-form button:hover {
    background-color: #135e96;
}

.chatbot-enhancer-pre-chat-form button:disabled {
    background-color: #c3c4c7;
    cursor: not-allowed;
}

/* Live Chat Redirect Button Styles */
.chatbot-enhancer-live-chat-redirect {
    margin-top: 15px;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.chatbot-enhancer-redirect-button {
    background-color: #fff;
    color: #2271b1;
    border: 1px solid #2271b1;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.chatbot-enhancer-redirect-button:hover {
    background-color: #f0f0f1;
}

/* Admin Settings Page Styles */
.chatbot-enhancer-admin-wrap {
    margin: 20px 0;
}

.chatbot-enhancer-admin-wrap .nav-tab-wrapper {
    margin-bottom: 20px;
}

.chatbot-enhancer-admin-content {
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
}

.chatbot-enhancer-form-table {
    margin-top: 15px;
}

.chatbot-enhancer-field-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.chatbot-enhancer-field-group:last-child {
    border-bottom: none;
}

/* Trainer Page Styles */
.chatbot-enhancer-trainer-wrap {
    margin: 20px 0;
}

.chatbot-enhancer-post-list {
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.chatbot-enhancer-post-list table {
    width: 100%;
    border-collapse: collapse;
}

.chatbot-enhancer-post-list th,
.chatbot-enhancer-post-list td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.chatbot-enhancer-post-list th {
    background-color: #f9f9f9;
    font-weight: 600;
}

.chatbot-enhancer-post-list tr:last-child td {
    border-bottom: none;
}

.chatbot-enhancer-progress {
    margin-top: 15px;
    display: none;
}

.chatbot-enhancer-progress-bar {
    height: 20px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.chatbot-enhancer-progress-bar-inner {
    height: 100%;
    background-color: #2271b1;
    width: 0;
    transition: width 0.3s ease;
}

.chatbot-enhancer-progress-text {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}
