/* Multi-Resolution Visualizer Styles */
.multi-resolution-visualizer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin: 20px 0;
}

.visualizer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visualizer-header h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.4em;
}

.resolution-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.resolution-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
}

.resolution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.resolution-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid;
}

.resolution-panel.landsat {
    border-left-color: #28a745;
}

.resolution-panel.modis {
    border-left-color: #17a2b8;
}

.resolution-panel.smap {
    border-left-color: #ffc107;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.panel-header h4 {
    margin: 0;
    color: white;
}

.resolution-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    color: #ffd700;
}

.data-visualization {
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    position: relative;
}

.pixel-grid {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 3px;
}

.pixel {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.pixel:hover {
    opacity: 1;
    transform: scale(1.2);
}

.comparison-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 20px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.educational-insights {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.educational-insights h4 {
    color: #3498db;
    margin-top: 0;
}

.insight-point {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.insight-point::before {
    content: "💡";
    position: absolute;
    left: 0;
    top: 0;
}

.loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffd700;
    font-style: italic;
}

.loading-indicator::before {
    content: "⏳";
}