.landscape-container {
    background: linear-gradient(to bottom, #f8f9fa, #e8f5e8);
    min-height: 100vh;
}

.card-custom {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
}

.range-container {
    margin-bottom: 1rem;
}

.range-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.range-input {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    -webkit-appearance: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
}

.environment-svg {
    width: 100%;
    max-width: 420px;
    min-height: 250px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 15px;
    font-size: 0.9rem;
}

.color-box {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.total-indicator {
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.total-good {
    background-color: #d4edda;
    color: #155724;
}

.total-warning {
    background-color: #fff3cd;
    color: #856404;
}

.city-type {
    font-size: 1.5rem;
    color: #495057;
    margin-top: 10px;
}

.example-btn {
    margin: 5px;
    border-radius: 20px;
}

.interpretation {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px;
    border-radius: 8px;
}