.hss-widget-container {
    max-width: 550px;
    background-color: #fff;
    padding: 15px;
	margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.2);

}

.consumption-help-link-wrapper {
    display: flex;
    justify-content: center;
}


.consumption-help-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    background-color: #a6a6a6; /* darker silver grey */
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #999;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.2s ease;
    margin-top: 16px;
}

.consumption-help-link:hover {
    background-color: #8f8f8f;
}

.icon-calculator {
    width: 18px;
    height: 18px;
    fill: white;
    margin-right: 8px;
}




.hss-widget-container h3 {
	margin-left: 10px;
}

.filter-area, .consumption-area {
    font-size: 14px;
    font-weight: bold;
    background-color: #f5f5f5;
    padding: 8px 10px; /* Reduced padding for better text fit */
    margin-bottom: 15px;
    border-radius: 10px;
}

.subtitle {
    font-size: 17px;
    font-weight: bold;
     padding: 6px 10px; /* Reduced padding for better text fit */
}

.slider-container {
    display: flex;
    justify-content: space-between;
}

.controls {
    display: flex;
    align-items: center;
}

.controls .consumption-input {
    background-color: #fff;
    font-size: 18px; /* Adjust the font size as desired */
    color: #000; /* Optional: ensure text color is readable against white background */
}


.slider-button {
    padding: 8px 12px;
    font-size: 14px;
    background-color: #0000e5;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-left:8px;
    margin-right:8px;
}

.consumption-input {
    width: 100px;
    padding: 8px 12px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0 10px; /* Increased margin between button and kWh/v text */
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* auto-fit with a min width */
    gap: 10px;
    padding: 10px;
    justify-content: center;
    box-sizing: border-box;
}


.filter-box {
    background-color: #fff;
    padding: 12px; /* More spacious padding for better visual impact */
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    font-size: 17px; /* Increased font size for better readability */
    cursor: pointer;
}

.filter-box:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); /* Enhanced box-shadow on hover */
}


.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.cta-button {
    width: 100%;
    background-color: #ff7f00;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e76e00; /* Darker shade of orange on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
}

.widget-footer {
    text-align: center;
    padding: 10px 0;
    display: flex; /* Using flexbox to align items side by side */
    align-items: center; /* Center align items vertically */
    justify-content: center; /* Center horizontally */
}

.widget-footer span {
    font-size: 11px; /* Smaller font size */
    font-weight: bold; /* Make the text bold */
    display: block; /* Makes the span block to apply margin correctly */
}

.widget-footer img {
    height: 35px; /* Adjust the image height as needed */
    margin-left: 10px;
	
}

@media (max-width: 600px) {
    .hss-widget-container {
        width: 100%;     /* Take the full width on mobile */
        max-width: none; /* Remove any maximum width constraints */
        padding: 10px;   /* Add some padding for better spacing */
        margin: 0 auto;  /* Center the container horizontally */
		margin-bottom: 15px;
    }

    .subtitle {
        font-size: 14px;
        font-weight: bold;
        padding: 6px 10px;
    }

    .filter-box {
        background-color: #fff;
        padding: 12px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        font-size: 14px;
        cursor: pointer;
    }

    .widget-footer {
        flex-direction: column;
    }

    .widget-footer span {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .widget-footer img {
        height: 25px;
        width: auto;
        margin-left: 0;
        margin-top: 5px;
    }
}
