/* ============================================
   SOLAR SAVINGS CALCULATOR - GOOGLE SUNROOF STYLE
   ============================================ */

/* ===== BASE STYLES ===== */
.ssc-google-sunroof-style {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #202124;
    line-height: 1.5;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

/* ===== PROGRESS STEPS (Google Sunroof Style) ===== */
.ssc-progress-steps {
    display: flex;
    background: white;
    padding: 0 30px;
    border-bottom: 1px solid #dadce0;
}

.ssc-step {
    flex: 1;
    padding: 20px 0;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.ssc-step::after {
    content: '';
    position: absolute;
    top: 34px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #dadce0;
    z-index: 1;
}

.ssc-step:last-child::after {
    display: none;
}

.ssc-step.active::after {
    background: #1a73e8;
}

.ssc-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f3f4;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.ssc-step.active .ssc-step-circle {
    background: #1a73e8;
    color: white;
    box-shadow: 0 2px 6px rgba(26, 115, 232, 0.4);
}

.ssc-step-label {
    font-size: 14px;
    color: #5f6368;
    font-weight: 400;
    transition: all 0.3s;
}

.ssc-step.active .ssc-step-label {
    color: #1a73e8;
    font-weight: 500;
}

/* ===== MAIN CONTAINER ===== */
.ssc-main-container {
    display: flex;
    min-height: 600px;
    max-height: 800px;
}

/* ===== SIDEBAR ===== */
.ssc-sidebar {
    width: 400px;
    background: white;
    overflow-y: auto;
    padding: 30px;
    border-right: 1px solid #dadce0;
}

.ssc-step-content {
    display: none;
    animation: ssc-fadeIn 0.3s ease;
}

.ssc-step-content.active {
    display: block;
}

@keyframes ssc-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== CARD STYLES ===== */
.ssc-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #dadce0;
}

.ssc-step-title {
    font-size: 20px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ssc-step-title i {
    color: #1a73e8;
}

/* ===== ADDRESS INPUT ===== */
.ssc-address-input-container {
    margin-bottom: 20px;
}

.ssc-address-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #dadce0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.ssc-address-input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.ssc-input-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5f6368;
    margin-top: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.ssc-input-hint i {
    color: #1a73e8;
}

/* ===== BUTTONS ===== */
.ssc-analyze-btn,
.ssc-primary-btn,
.ssc-secondary-btn {
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
}

.ssc-analyze-btn,
.ssc-primary-btn {
    background: #1a73e8;
    color: white;
}

.ssc-analyze-btn:hover,
.ssc-primary-btn:hover {
    background: #0d62d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.ssc-secondary-btn {
    background: #f1f3f4;
    color: #202124;
}

.ssc-secondary-btn:hover {
    background: #e8eaed;
    transform: translateY(-2px);
}

.ssc-contact-cta {
    background: linear-gradient(135deg, #34a853, #2e8b57);
    color: white;
    padding: 18px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s;
}

.ssc-contact-cta:hover {
    background: linear-gradient(135deg, #2e8b57, #276a47);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
}

/* ===== STAT CARDS ===== */
.ssc-analysis-results {
    margin: 24px 0;
}

.ssc-stat-card {
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    margin-bottom: 16px;
    border-left: 4px solid #dadce0;
    display: flex;
    gap: 16px;
    align-items: center;
}

.ssc-stat-card.ssc-highlight {
    background: #e8f0fe;
    border-left-color: #1a73e8;
}

.ssc-stat-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a73e8;
}

.ssc-stat-card.ssc-highlight .ssc-stat-icon {
    background: #1a73e8;
    color: white;
}

.ssc-stat-content {
    flex: 1;
}

.ssc-stat-value {
    font-size: 28px;
    font-weight: 400;
    color: #202124;
    line-height: 1.2;
}

.ssc-stat-card.ssc-highlight .ssc-stat-value {
    color: #1a73e8;
}

.ssc-stat-label {
    font-size: 14px;
    color: #5f6368;
    margin-top: 4px;
}

.ssc-stat-sub {
    font-size: 12px;
    color: #9aa0a6;
    margin-top: 2px;
}

/* ===== SAVINGS VISUALIZATION ===== */
.ssc-savings-visual {
    margin: 24px 0;
}

.ssc-comparison-chart {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.ssc-chart-bar {
    flex: 1;
    text-align: center;
}

.ssc-bar-label {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 8px;
}

.ssc-bar {
    height: 200px;
    border-radius: 8px 8px 0 0;
    margin: 0 auto;
    width: 60px;
    position: relative;
    transition: height 1s ease;
}

.ssc-chart-bar.current .ssc-bar {
    background: linear-gradient(to top, #ea4335, #f28b82);
}

.ssc-chart-bar.solar .ssc-bar {
    background: linear-gradient(to top, #34a853, #81c995);
}

.ssc-bar-value {
    margin-top: 8px;
    font-weight: 500;
    font-size: 14px;
}

.ssc-chart-bar.current .ssc-bar-value {
    color: #ea4335;
}

.ssc-chart-bar.solar .ssc-bar-value {
    color: #34a853;
}

.ssc-savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6f4ea;
    color: #137333;
    padding: 12px 20px;
    border-radius: 24px;
    font-weight: 500;
    margin: 0 auto;
}

.ssc-savings-badge i {
    font-size: 14px;
}

/* ===== TIMELINE ===== */
.ssc-timeline {
    margin: 24px 0;
}

.ssc-timeline-points {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    position: relative;
}

.ssc-timeline-points::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dadce0;
    z-index: 1;
}

.ssc-timeline-point {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.ssc-point {
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid #dadce0;
    border-radius: 50%;
    margin: 0 auto 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.ssc-timeline-point:hover .ssc-point {
    border-color: #1a73e8;
    transform: scale(1.2);
}

.ssc-point-label {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 4px;
}

.ssc-point-value {
    font-weight: 500;
    color: #202124;
    font-size: 14px;
}

/* ===== FINANCE TABS ===== */
.ssc-finance-tabs {
    display: flex;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    margin: 20px 0;
}

.ssc-finance-tab {
    flex: 1;
    padding: 16px;
    background: #f8f9fa;
    border: none;
    color: #5f6368;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.ssc-finance-tab.active {
    background: white;
    color: #1a73e8;
    border-bottom-color: #1a73e8;
}

.ssc-finance-tab:hover:not(.active) {
    background: #e8eaed;
}

/* ===== FINANCE OPTIONS ===== */
.ssc-finance-results {
    margin: 20px 0;
}

.ssc-finance-option {
    display: none;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dadce0;
}

.ssc-finance-option.active {
    display: block;
}

.ssc-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ssc-option-header h3 {
    font-size: 18px;
    font-weight: 400;
    color: #202124;
    margin: 0;
}

.ssc-option-price {
    font-size: 24px;
    font-weight: 500;
    color: #1a73e8;
}

.ssc-option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.ssc-option-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5f6368;
}

.ssc-option-features li i {
    color: #34a853;
}

.ssc-payback-period,
.ssc-loan-term {
    padding-top: 16px;
    border-top: 1px solid #dadce0;
    color: #5f6368;
    font-size: 14px;
}

/* ===== SOLAR INDICATORS ===== */
.ssc-solar-indicators {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    z-index: 20;
    flex-wrap: wrap;
    max-width: 400px;
    display: none; /* Hidden by default, shown after analysis */
}

.ssc-solar-indicator {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    min-width: 140px;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    cursor: pointer;
}

.ssc-solar-indicator:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 1);
}

.ssc-indicator-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1a73e8, #0d62d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.ssc-solar-indicator[data-type="sunlight"] .ssc-indicator-icon {
    background: linear-gradient(135deg, #f9ab00, #f57c00);
}

.ssc-solar-indicator[data-type="energy"] .ssc-indicator-icon {
    background: linear-gradient(135deg, #34a853, #2e8b57);
}

.ssc-solar-indicator[data-type="savings"] .ssc-indicator-icon {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.ssc-indicator-content {
    flex: 1;
}

.ssc-indicator-title {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 2px;
    font-weight: 500;
}

.ssc-indicator-value {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
}

/* ===== MAP SECTION ===== */
.ssc-map-section {
    flex: 1;
    position: relative;
    background: #202124;
}

#ssc-google-map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.ssc-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #202124;
}

.ssc-map-loading {
    text-align: center;
    color: white;
}

.ssc-map-loading i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a73e8;
}

.ssc-map-loading p {
    font-size: 16px;
    color: #9aa0a6;
}

/* ===== HEATMAP OVERLAY ===== */
.ssc-heatmap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.ssc-heatmap-cell {
    position: absolute;
    border-radius: 4px;
    opacity: 0.6;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s;
    mix-blend-mode: multiply;
}

.ssc-heatmap-cell:hover {
    opacity: 0.8;
    transform: scale(1.05);
    z-index: 100;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

/* Heatmap Colors */
.ssc-heatmap-high {
    background: rgba(52, 168, 83, 0.6); /* Green */
}

.ssc-heatmap-medium {
    background: rgba(251, 188, 5, 0.6); /* Yellow */
}

.ssc-heatmap-low {
    background: rgba(234, 67, 53, 0.6); /* Red */
}

/* ===== MAP CONTROLS ===== */
.ssc-map-controls {
    position: absolute;
    bottom: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
}

.ssc-map-scale {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #202124;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.ssc-scale-bar {
    width: 40px;
    height: 2px;
    background: #202124;
}

.ssc-zoom-controls {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.ssc-zoom-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.2s;
}

.ssc-zoom-btn:hover {
    background: #f8f9fa;
}

.ssc-zoom-btn:active {
    background: #e8eaed;
}

/* ===== HEATMAP LEGEND ===== */
.ssc-heatmap-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 20;
    max-width: 200px;
}

.ssc-legend-title {
    font-size: 12px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
}

.ssc-legend-gradient {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ssc-gradient-bar {
    flex: 1;
    height: 8px;
    background: linear-gradient(to right, #ea4335, #fbbc05, #34a853);
    border-radius: 4px;
}

.ssc-legend-low,
.ssc-legend-high {
    font-size: 11px;
    color: #5f6368;
}

.ssc-legend-note {
    font-size: 11px;
    color: #9aa0a6;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== MAP ATTRIBUTION ===== */
.ssc-map-attribution {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: #5f6368;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.ssc-map-attribution span {
    opacity: 0.8;
}

/* ===== ADVANCED PANEL ===== */
.ssc-toggle-btn {
    width: 100%;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 8px;
    color: #5f6368;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.ssc-toggle-btn:hover {
    background: #e8eaed;
}

.ssc-advanced-panel {
    margin-bottom: 20px;
}

.ssc-parameter {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ssc-parameter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #202124;
}

.ssc-parameter-value {
    font-weight: 500;
    color: #1a73e8;
}

.ssc-slider {
    width: 100%;
    height: 6px;
    background: #dadce0;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    margin: 8px 0;
}

.ssc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1a73e8;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.ssc-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #5f6368;
    margin-top: 8px;
}

.ssc-parameter-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.ssc-parameter-buttons button {
    flex: 1;
}

/* ===== LOADING OVERLAY ===== */
.ssc-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.ssc-loading-spinner {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
}

.ssc-spinner-icon {
    font-size: 48px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.ssc-spinner-text h3 {
    font-size: 20px;
    color: #202124;
    margin-bottom: 8px;
}

.ssc-spinner-text p {
    color: #5f6368;
    margin-bottom: 20px;
}

.ssc-progress-bar {
    height: 4px;
    background: #e8eaed;
    border-radius: 2px;
    overflow: hidden;
}

.ssc-progress-fill {
    height: 100%;
    background: #1a73e8;
    width: 0%;
    animation: ssc-progress 2s ease-in-out infinite;
}

@keyframes ssc-progress {
    0% { width: 0%; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0%; margin-left: 100%; }
}

/* ===== MODALS ===== */
.ssc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.ssc-contact-modal,
.ssc-heatmap-modal {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: ssc-modalIn 0.3s ease;
}

@keyframes ssc-modalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ssc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #dadce0;
}

.ssc-modal-header h3 {
    font-size: 20px;
    font-weight: 400;
    color: #202124;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ssc-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #5f6368;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ssc-modal-close:hover {
    background: #f8f9fa;
}

.ssc-modal-content {
    padding: 24px;
}

.ssc-form-group {
    margin-bottom: 20px;
}

.ssc-form-group label {
    display: block;
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 8px;
    font-weight: 500;
}

.ssc-form-group input,
.ssc-form-group textarea,
.ssc-bill-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.ssc-form-group input:focus,
.ssc-form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.ssc-form-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5f6368;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.ssc-form-disclaimer i {
    color: #34a853;
}

.ssc-modal-footer {
    padding: 24px;
    border-top: 1px solid #dadce0;
    display: flex;
    gap: 12px;
}

.ssc-modal-footer button {
    flex: 1;
}

/* ===== DETAILED ESTIMATES ===== */
.ssc-detailed-estimates {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dadce0;
}

.ssc-detailed-estimates h4 {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ssc-estimate-details {
    font-size: 14px;
}

.ssc-estimate-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e8eaed;
}

.ssc-estimate-row:last-child {
    border-bottom: none;
}

.ssc-estimate-row strong {
    color: #202124;
}

/* ===== ACTION BUTTONS ===== */
.ssc-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.ssc-action-buttons button {
    flex: 1;
}

/* ===== DEMO NOTE ===== */
.ssc-demo-note {
    margin-top: 16px;
    padding: 12px;
    background: #fff8e1;
    border-radius: 8px;
    border: 1px solid #ffd54f;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5f3e00;
}

.ssc-demo-note i {
    color: #f9ab00;
}

/* ===== WRONG BUILDING NOTE ===== */
.ssc-wrong-building {
    margin-top: 20px;
    padding: 12px;
    background: #e8f0fe;
    border-radius: 8px;
    border: 1px solid #c6dafc;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1a73e8;
}

.ssc-wrong-building i {
    font-size: 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .ssc-main-container {
        flex-direction: column;
        max-height: none;
    }
    
    .ssc-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dadce0;
        max-height: 500px;
    }
    
    .ssc-map-section {
        height: 500px;
    }
    
    .ssc-solar-indicators {
        max-width: 300px;
    }
    
    .ssc-solar-indicator {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .ssc-progress-steps {
        padding: 0 16px;
    }
    
    .ssc-step-label {
        font-size: 12px;
    }
    
    .ssc-sidebar {
        padding: 20px;
    }
    
    .ssc-step-title {
        font-size: 18px;
    }
    
    .ssc-comparison-chart {
        flex-direction: column;
        gap: 20px;
    }
    
    .ssc-bar {
        height: 150px;
    }
    
    .ssc-timeline-points {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .ssc-timeline-point {
        flex: 0 0 calc(50% - 10px);
    }
    
    .ssc-finance-tabs {
        flex-direction: column;
    }
    
    .ssc-solar-indicators {
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        justify-content: center;
    }
    
    .ssc-solar-indicator {
        flex: 1;
        min-width: 100px;
        padding: 10px;
    }
    
    .ssc-indicator-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .ssc-map-controls {
        bottom: 60px;
        right: 10px;
    }
    
    .ssc-heatmap-legend {
        bottom: 10px;
        left: 10px;
        max-width: 180px;
    }
    
    .ssc-map-attribution {
        flex-direction: column;
        gap: 4px;
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .ssc-step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .ssc-step::after {
        top: 30px;
    }
    
    .ssc-card {
        padding: 16px;
    }
    
    .ssc-stat-value {
        font-size: 24px;
    }
    
    .ssc-action-buttons {
        flex-direction: column;
    }
    
    .ssc-parameter-buttons {
        flex-direction: column;
    }
    
    .ssc-modal-footer {
        flex-direction: column;
    }
    
    .ssc-solar-indicators {
        gap: 8px;
    }
    
    .ssc-solar-indicator {
        padding: 8px;
        min-width: 80px;
    }
    
    .ssc-indicator-title {
        font-size: 10px;
    }
    
    .ssc-indicator-value {
        font-size: 12px;
    }
}