.elementor-8695 .elementor-element.elementor-element-414ea67 > .elementor-widget-container{padding:40px 0px 0px 0px;}.elementor-8695 .elementor-element.elementor-element-414ea67{text-align:center;}[data-theme="dark"] .elementor-8695 .elementor-element.elementor-element-414ea67 .elementor-heading-title{color:#ffffff;}.elementor-8695 .elementor-element.elementor-element-91495c9{text-align:center;}[data-theme="dark"] .elementor-8695 .elementor-element.elementor-element-91495c9{color:#ffffff;}.elementor-8695 .elementor-element.elementor-element-0173338{margin-top:24px;margin-bottom:0px;}.elementor-8695 .elementor-element.elementor-element-d1af4fc{margin-top:0px;margin-bottom:80px;}.elementor-8695 .elementor-element.elementor-element-51ad5c9{text-align:center;}[data-theme="dark"] .elementor-8695 .elementor-element.elementor-element-51ad5c9{color:#ffffff;}@media(min-width:768px){.elementor-8695 .elementor-element.elementor-element-16bf554{width:70%;}.elementor-8695 .elementor-element.elementor-element-70ed0ed{width:30%;}}/* Start custom CSS for html, class: .elementor-element-f40b23e */.signal-filter-app {
    font-family: inherit;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.signal-filter-app h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
    color: #2D65B2;
}

.sf-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sf-controls {b
        grid-template-columns: 1fr;
    }
}

.signal-filter-app select, 
.signal-filter-app button {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    background-color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.signal-filter-app select:focus, 
.signal-filter-app button:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.signal-filter-app button {
background-color: #2D65B2;
color: white;
border: none;
cursor: pointer;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
width: 100%;
padding: 12px;
border-radius: 12px;
font-size: 1rem;
transition: all 0.3s;
display: flex;          /* Adicionado */
align-items: center;    /* Adicionado */
justify-content: center; /* Adicionado */
line-height: 1;         /* Adicionado */
min-height: 48px;       /* Adicionado */
}

.signal-filter-app button:hover {
background-color: #1565c0;
transform: translateY(-2px);
}

.signal-filter-app textarea {
    width: 100%;
    min-height: 150px;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-family: monospace;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 20px;
    background-color: white;
}

.signal-filter-app textarea:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.sf-section {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sf-section h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.zone-section {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.zone-section:hover {
    transform: translateX(5px);
}

.zone-green {
    background-color: #e8f5e9;
    border-left: 4px solid #2e7d32;
}

.zone-blue {
    background-color: #e3f2fd;
    border-left: 4px solid #1565c0;
}

.zone-red {
    background-color: #ffebee;
    border-left: 4px solid #c62828;
}

.zone-neutral {
    background-color: #f5f5f5;
    border-left: 4px solid #9e9e9e;
}

.zone-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zone-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

.signal-list {
    font-family: monospace;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 6px;
    overflow-x: auto;
}

.news-event {
    background-color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 4px solid #1976d2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bull-icon {
    color: #f57c00;
    font-weight: bold;
}

.sf-loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.sf-loading::after {
    content: "⏳";
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sf-alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.sf-alert-warning {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    color: #ef6c00;
}

.sf-alert-danger {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.sf-timestamp {
    text-align: right;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
}

.removed-signal-card {
background-color: #ffebee;
padding: 10px;
margin-bottom: 10px;
border-radius: 6px;
border-left: 4px solid #c62828;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.removed-signal-card strong {
font-family: monospace;
font-size: 14px;
}

.removed-signal-card .removal-reason {
margin-top: 5px;
font-size: 0.9rem;
color: #c62828;
}/* End custom CSS */