<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* News Insight Tab Styles */
.news-search-container {
margin: 15px 0;
padding: 0 15px;
}

.news-search {
width: 100%;
padding: 8px 12px;
border-radius: 4px;
border: 1px solid #ddd;
font-size: 14px;
}

.news-articles-container {
display: flex;
flex-direction: column;
gap: 15px;
padding: 0 15px;
max-height: 500px; 
overflow-y: auto; 
border: 1px solid #ddd; 
background-color: #f9f9f9;
border-radius: 8px;
}

.news-article {
display: flex;
background-color: #fff;
border-radius: 8px;
padding: 12px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
align-items: center;
}

.news-logo {
width: 40px;
height: 40px;
margin-right: 12px;
display: flex;
align-items: center;
justify-content: center;
}

.news-source-icon {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}

.news-content {
flex: 1;
}

.news-headline {
margin: 0 0 5px 0;
font-size: 15px;
font-weight: normal;
}

.news-timestamp {
margin: 0;
font-size: 12px;
color: #666;
}

.news-action {
margin-left: 10px;
}

.news-insight-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #a6ecc0;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center; 
    justify-content: center;
    transition: background-color 0.2s;
    padding: 0; 
}


.news-insight-button:hover {
background-color: #16a34a;
}

.news-chat-icon {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-top: 5px;
}

/* News Chat Modal */
.news-chat-modal {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
width: 350px;
height: 500px;
background-color: #fff;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
overflow: hidden;
}

.news-chat-container {
display: flex;
flex-direction: column;
height: 100%;
}

.news-chat-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 15px;
background-color: #f3f4f6;
border-bottom: 1px solid #e5e7eb;
}

.news-chat-header h3 {
margin: 0;
font-size: 16px;
font-weight: 600;
}

.news-chat-close {
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #666;
}

.news-chat-content {
flex: 1;
padding: 15px;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 10px;
}

.news-chat-message {
padding: 8px 12px;
border-radius: 8px;
max-width: 80%;
word-wrap: break-word;
}

.news-chat-user {
align-self: flex-end;
background-color: #3b82f6;
color: white;
}

.news-chat-bot {
align-self: flex-start;
background-color: #f3f4f6;
color: #333;
}

.news-chat-input {
display: flex;
padding: 10px;
border-top: 1px solid #e5e7eb;
}

.news-chat-input-box {
flex: 1;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 20px;
margin-right: 8px;
}

.news-chat-send {
width: 36px;
height: 36px;
border-radius: 50%;
background-color: #3b82f6;
border: none;
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}

.news-chat-send:hover {
background-color: #2563eb;
}

/* Dark mode adjustments */
.dark-mode .news-article {
background-color: #1f2937;
color: #f3f4f6;
}

.dark-mode .news-timestamp {
color: #9ca3af;
}

.dark-mode .news-chat-modal {
background-color: #1f2937;
}

.dark-mode .news-chat-header {
background-color: #111827;
border-bottom: 1px solid #374151;
}

.dark-mode .news-chat-bot {
background-color: #374151;
color: #f3f4f6;
}

.dark-mode .news-chat-input {
border-top: 1px solid #374151;
}

.dark-mode .news-chat-input-box {
background-color: #374151;
color: #f3f4f6;
border: 1px solid #4b5563;
}



.subscribe-button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 50%;
}

.subscribe-button:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}</pre></body></html>