<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.econ-events-module {
    background: white;
    border-radius: 8px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.econ-events-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.econ-events-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.econ-events-view-all {
    font-size: 12.8px;
    color: #007bff;
    text-decoration: none;
}

    .econ-events-view-all:hover {
        text-decoration: underline;
    }

.econ-events-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.econ-events-tab {
    flex: 1;
    padding: 8px 4px;
    text-align: center;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    font-size: 12.8px;
    color: #6c757d;
    transition: all 0.2s;
}

    .econ-events-tab.econ-events-active {
        background: white;
        color: #2c3e50;
        border-bottom: 2px solid #007bff;
    }

    .econ-events-tab:hover {
        background: #e9ecef;
    }

.econ-events-content {
    flex: 1;
    overflow-y: auto;
    padding: 6px 8px 8px 8px;
    min-height: 0;
}

.econ-events-item {
    padding: 4px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 12.8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .econ-events-item:last-child {
        border-bottom: none;
    }

.econ-events-item-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.econ-events-time {
    color: #6c757d;
    font-weight: 500;
    width: 30px;
    flex-shrink: 0;
    font-size: 12.8px;
}

.econ-events-impact {
    width: 6px;
    height: 6px;
    border-radius: 1px;
    flex-shrink: 0;
}

.econ-events-name {
    flex: 1;
    color: #212529;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.econ-events-values {
    display: flex;
    gap: 8px;
    margin-left: 42px;
    font-size: 12.8px;
}

.econ-events-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.econ-events-value-label {
    color: #6c757d;
    font-size: 12.8px;
    line-height: 1;
}

.econ-events-value-number {
    color: #212529;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    font-size: 12.8px;
}

    .econ-events-value-number.econ-events-positive {
        color: #28a745;
    }

    .econ-events-value-number.econ-events-negative {
        color: #dc3545;
    }

.econ-events-no-events {
    text-align: center;
    color: #6c757d;
    padding: 20px;
    font-size: 12.8px;
}

.econ-events-impact-0 {
    background-color: #e9ecef;
}

.econ-events-impact-1 {
    background-color: #ffc107;
}

.econ-events-impact-2 {
    background-color: #fd7e14;
}

.econ-events-impact-3 {
    background-color: #dc3545;
}

@media (max-width: 768px) {
    .econ-events-module {
        width: 100%;
    }
}
</pre></body></html>