/* Simple Canada Load Map - Guaranteed Working CSS */

.simple-canada-load-map {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Status Message */
.simple-status {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}

.simple-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.simple-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.simple-status.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Header */
.simple-header {
    text-align: center;
    background: #2563eb;
    color: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.simple-header h2 {
    margin: 0 0 8px 0;
    font-size: 2rem;
    font-weight: 700;
}

.simple-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Main Grid */
.simple-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .simple-main-grid {
        grid-template-columns: 1fr;
    }
}

/* Sections */
.simple-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.simple-section h3 {
    margin: 0 0 16px 0;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
}

/* Search Section */
.search-section {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
}

.simple-search-box {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.simple-search-box input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.simple-search-box input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Buttons */
.simple-btn {
    background: #2563eb;
    color: black;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.simple-btn:hover {
    background: #1d4ed8;
    color: black;
    transform: translateY(-1px);
}

.simple-btn:active {
    transform: translateY(0);
}

/* City Buttons Grid */
.simple-city-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.simple-city-btn {
    background: #2563eb;
    color: black;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
}

.simple-city-btn:hover {
    background: #1d4ed8;
    color: black;
    transform: translateY(-1px);
}

/* Map Section */
.map-section {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
}

.simple-map-display {
    text-align: center;
}

.simple-canada-visual {
    margin-bottom: 16px;
}

.canada-shape {
    position: relative;
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 3px solid #2563eb;
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.maple-leaf {
    font-size: 2.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.canada-text {
    font-weight: 700;
    color: #1e40af;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.location-pin {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-dot {
    width: 12px;
    height: 12px;
    background: #dc2626;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pin-label {
    background: #dc2626;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 4px;
    white-space: nowrap;
}

.simple-map-info {
    background: #f8fafc;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.simple-map-info p {
    margin: 4px 0;
    font-size: 14px;
}

/* Load Section */
.load-section {
    background: #f0fdf4;
    border: 2px solid #22c55e;
}

.simple-city-header h4 {
    margin: 0 0 4px 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.simple-city-header p {
    margin: 0 0 16px 0;
    color: #6b7280;
    font-size: 14px;
}

/* Info Boxes */
.simple-info-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
}

.simple-info-box h5 {
    margin: 0 0 12px 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.snow-box {
    border-left: 4px solid #3b82f6;
    background: #f0f9ff;
}

.wind-box {
    border-left: 4px solid #10b981;
    background: #f0fdf4;
}

/* Data Rows */
.simple-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.simple-data-row:last-child {
    border-bottom: none;
}

.data-label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.data-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.load-value {
    color: #dc2626;
    font-size: 16px;
    font-weight: 700;
}

/* NBC Reference */
.nbc-reference {
    margin: 12px 0 0 0;
    font-size: 12px;
    color: #059669;
    font-weight: 500;
}

/* Zone Badge */
.simple-zone-badge {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    margin-bottom: 16px;
}

.zone-text {
    font-weight: 700;
    color: #92400e;
    font-size: 16px;
}

.zone-ref {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #78350f;
}

/* Export Section */
.simple-export-section h5 {
    margin: 0 0 12px 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.simple-export-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.export-btn {
    background: #059669;
    color: black;
    font-size: 13px;
    padding: 8px 12px;
}

.export-btn:hover {
    background: #047857;
    color: black;
}

/* Footer */
.simple-footer {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
}

.simple-footer p {
    margin: 4px 0;
    color: #64748b;
}

.simple-footer p:first-child {
    color: #1e293b;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 640px) {
    .simple-canada-load-map {
        padding: 16px;
    }
    
    .simple-header {
        padding: 20px;
    }
    
    .simple-header h2 {
        font-size: 1.5rem;
    }
    
    .simple-section {
        padding: 16px;
    }
    
    .simple-search-box {
        flex-direction: column;
    }
    
    .simple-city-grid {
        grid-template-columns: 1fr;
    }
    
    .canada-shape {
        width: 160px;
        height: 120px;
    }
    
    .maple-leaf {
        font-size: 2rem;
    }
    
    .simple-export-buttons {
        flex-direction: column;
    }
}

