#piechartdivlegend {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

#piechartdivlegend .legend-item {
    margin: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

#piechartdivlegend .legend-item .legend-value {
    font-size: 12px;
    font-weight: normal;
    margin-left: 22px;
}

#piechartdivlegend .legend-item .legend-marker {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

#piechartdivlegend .legend-item.disabled .legend-marker {
    opacity: 0.5;
    background: #ddd;
}

/* Input validation states */
.form-control.ng-invalid.ng-touched {
    border-color: #f44336;
}

.form-control.ng-valid.ng-touched {
   border-color: rgba(76, 175, 80, 0.2);
}
.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    height: auto !important;
}

.form-control:focus {
    /* outline: none; */
    border-color: rgba(76, 175, 80, 0.2);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}