/* === PROACTIVE FEATURES STYLES === */

.proactive-welcome {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
}

.astrological-badges {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.astrological-badges .badge {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

.proactive-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-left: 4px solid #667eea;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 300px;
}

.proactive-notification button {
    background: none;
    border: none;
    font-size: 1.2em;
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

.proactive-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.proactive-message.high-priority {
    border-left-color: #ff6b6b;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.proactive-message.medium-priority {
    border-left-color: #feca57;
    background: linear-gradient(135deg, #ff9ff3 0%, #f368e0 100%);
}

.proactive-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.proactive-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.proactive-content {
    line-height: 1.5;
    margin-bottom: 5px;
}

.proactive-timestamp {
    font-size: 0.8em;
    opacity: 0.8;
    text-align: right;
}

/* === [PATCH] Darker look for welcome/alert cards in chat === */
#home-ai-chat .proactive-welcome,
#home-ai-chat .proactive-message,
.proactive-welcome,
.proactive-message {
    background: linear-gradient(135deg, #3e4fb6 0%, #4a2c86 100%) !important;
    color: #fff !important;
}

.proactive-message {
    border-left: 5px solid #ffd700 !important;
}

/* === END PROACTIVE FEATURES STYLES === */