/* PROSEO Public CSS */
.proseo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.proseo-pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.proseo-pricing-card.highlighted {
    border-color: #2271b1;
    transform: scale(1.05);
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: #2271b1;
}

.proseo-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    background: #2271b1;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
}

.proseo-btn.secondary {
    background: #444;
}

.proseo-zta textarea,
.proseo-imggen textarea,
.proseo-niche-finder-form input,
.proseo-niche-finder-form textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    margin: 8px 0 12px;
    box-sizing: border-box;
}

.proseo-generated-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* Chatbot */
.proseo-card { background: #fff; border: 1px solid #dcdcde; border-radius: 12px; padding: 16px; margin: 16px 0; }
.proseo-help { margin-top: 4px; color: #50575e; }
.proseo-form .proseo-field { margin: 12px 0; }
.proseo-form label { font-weight: 600; display: inline-block; margin-bottom: 6px; }
.proseo-chatbox { border: 1px solid #dcdcde; border-radius: 12px; padding: 12px; max-height: 320px; overflow: auto; background: #f6f7f7; }
.proseo-chatbox:focus { outline: 2px solid #2271b1; outline-offset: 2px; }
.proseo-chat-messages { list-style: none; padding: 0; margin: 0; }
.proseo-chat-msg { display: flex; gap: 10px; padding: 10px; border-radius: 10px; margin-bottom: 8px; background: #fff; border: 1px solid #e2e4e7; }
.proseo-chat-user { background: #fff; }
.proseo-chat-assistant { background: #fff; }
.proseo-chat-badge { font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 999px; background: #e5e5e5; align-self: flex-start; }
.proseo-chat-body { white-space: pre-wrap; line-height: 1.45; }
.proseo-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.proseo-status { color: #1d2327; }
.proseo-output { margin-top: 12px; }
.proseo-output-label { display: block; font-weight: 600; margin-bottom: 6px; }
.proseo-output-text { width: 100%; }
.proseo-advanced summary { cursor: pointer; }
