 body {
            background-color: #8fc7b9;
            font-family: 'Roboto', sans-serif;
        }

        select:hover,
        select:focus {
            border-color: #0f5132 !important;
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1);
        }

        .state-sec h1 {
            font-size: 40px;
            font-weight: 600;
            color: #154e3b;
            text-align: center;
            margin-bottom: 40px;
        }

        .select-input {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid #154e3b;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .select-group {
            flex: 1;
            min-width: 200px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
            font-size: 0.95rem;
        }

        select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            color: #333;
        }

        select option:hover {
            background-color: #154e3b;
        }

        select option:checked {
            color: #fff;
            background-color: #154e3b;
        }

        .chart-types {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid #154e3b;
            min-height: 500px;
        }

        .chart-type h2 {
            margin-bottom: 20px;
            color: #154e3b;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 1.3rem;
        }

        #chart-container {
            position: relative;
            height: 400px;
            width: 100%;
            margin-top: 20px;
        }
input{
    width: 100%;
    padding: 9px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
    background:#efefef;
}
        @media(max-width:768px) {
            .form-row {
                flex-direction: column;
            }

            .select-group {
                min-width: 100%;
            }

            #chart-container {
                height: 300px;
            }
        }