<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.economic-calendar-container {
    font-family: 'Roboto', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.calendar-header {
    text-align: center;
    margin-bottom: 30px;
}

.calendar-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.calendar-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.calendar-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    background-color: #f5f7fa;
    border-radius: 10px;
    padding: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.filter-group select,
.filter-group input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: #2196F3;
    outline: none;
}

.calendar-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.date-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-navigation button {
    background: none;
    border: none;
    color: #2196F3;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.date-navigation button:hover {
    background-color: #e3f2fd;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-toggle-btn {
    padding: 8px 12px;
    background-color: #f5f7fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle-btn:hover {
    background-color: #e3f2fd;
}

.view-toggle-btn.active {
    background-color: #2196F3;
    color: #fff;
    border-color: #2196F3;
}

.calendar-tools {
    display: flex;
    gap: 10px;
}

.calendar-tools button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.calendar-tools button:hover {
    background-color: #f5f7fa;
    color: #333;
}

.calendar-container {
    margin-bottom: 30px;
}

.calendar-date-section {
    margin-bottom: 30px;
}

.date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.date-header h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.event-count {
    color: #666;
    font-size: 14px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item {
    display: grid;
    grid-template-columns: 80px 80px 100px 1fr 120px 120px 80px;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-item.impact-high {
    border-left: 4px solid #f44336;
}

.event-item.impact-medium {
    border-left: 4px solid #ff9800;
}

.event-item.impact-low {
    border-left: 4px solid #4caf50;
}

.event-time {
    font-weight: 500;
    color: #333;
}

.event-currency {
    font-weight: 700;
    color: #2196F3;
}

.event-impact {
    display: flex;
    align-items: center;
    gap: 5px;
}

.impact-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.impact-text {
    font-size: 14px;
}

.event-title {
    font-weight: 500;
    color: #333;
}

.event-forecast,
.event-previous {
    font-size: 14px;
}

.forecast-label,
.previous-label {
    color: #666;
    margin-right: 5px;
}

.forecast-value,
.previous-value {
    font-weight: 500;
    color: #333;
}

.event-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.event-actions button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.event-actions button:hover {
    background-color: #f5f7fa;
    color: #333;
}

.btn-notify.active {
    color: #ff9800;
}

.no-events-message {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f7fa;
    border-radius: 10px;
}

.no-events-message i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-events-message h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.no-events-message p {
    color: #666;
}

.event-details-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.event-details {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.event-details-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.event-details-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.event-date-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-date-time i {
    color: #2196F3;
}

.event-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.event-description,
.event-forecasts,
.event-volatility,
.event-affected-pairs,
.event-strategies {
    background-color: #f5f7fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.event-description h3,
.event-forecasts h3,
.event-volatility h3,
.event-affected-pairs h3,
.event-strategies h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.event-description p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.forecast-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
}

.forecast-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.forecast-value {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.chart-container {
    height: 200px;
    margin-bottom: 10px;
}

.volatility-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.volatility-note i {
    color: #2196F3;
}

.pairs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.currency-pair {
    background-color: #e3f2fd;
    color: #2196F3;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.strategies-list {
    padding-left: 20px;
    margin: 0;
}

.strategies-list li {
    margin-bottom: 10px;
    color: #333;
}

.strategies-list li:last-child {
    margin-bottom: 0;
}

.event-details-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2196F3;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #1976D2;
}

.btn-secondary {
    background-color: #f5f7fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.calendar-footer {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.calendar-footer a {
    color: #2196F3;
    text-decoration: none;
}

.calendar-footer a:hover {
    text-decoration: underline;
}

.premium-feature {
    position: relative;
    overflow: hidden;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.premium-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.premium-overlay p {
    margin-bottom: 20px;
}

.premium-overlay button {
    padding: 10px 20px;
    background-color: #FFC107;
    color: #333;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.premium-overlay button:hover {
    background-color: #FFB300;
}

/* Responsive styles */
@media (max-width: 992px) {
    .event-details-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .economic-calendar-container {
        padding: 20px;
    }
    
    .calendar-filters {
        grid-template-columns: 1fr;
    }
    
    .calendar-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .event-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .event-time,
    .event-currency,
    .event-impact {
        display: inline-block;
        margin-right: 10px;
    }
    
    .event-actions {
        justify-content: flex-start;
    }
    
    .forecast-grid {
        grid-template-columns: 1fr;
    }
}
</pre></body></html>