

.enhancer-wrapper{
    display: block;
    width: 100%;
    --border-color: lightgrey;
    --bg-color: #717171;
    --accent-color: #4d4d4d;
    --text-color: #cfcfcf;
    --font-awesome: "Font Awesome 7 Free";
}

/*easy to edit CSS or adding dark/light mode*/

.enhancer-wrapper text{
    border: none;
}

.enhancer-toolbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: solid 1px var(--border-color);
    background: var(--bg-color);
    padding: 5px 10px;
}

.enhancer-toolbar .auto-fix-btn{
    display: inline-block;
    width: auto;
    font-size: .75em;
    color: var(--text-color);
    border-radius: 400px;
    background: var(--accent-color);
    padding: 7px 15px;
}
.auto-fix-btn::before{
    content: "\e2ca";
    font-family: var(--font-awesome);
    font-weight: 800;
    margin-right: .3em;
}


/*indicator*/
.indicator-container {
    display: block;
    position: relative;
}

.indicator-icon {
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.3em;
    min-width: 1.3em;
    height: 1.25em;
    font-family: 'Montserrat', arial, inherit;
    line-height: 1;
    color: white;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
}

.indicator-icon i, .indicator-icon span{
    font-size: .65em;
    font-weight: 600;
    margin: 0;
}

/*statuses*/
.indicator-icon.has-errors {
    display: flex;
    background: #e74c3c;
    animation: pulse 1.5s infinite;
}
.indicator-icon.success { 
    display: flex;
    background: #2ecc71; 
}
.indicator-icon.loading { 
    display: flex;
    background: #3498db; 
}
.indicator-icon.warn { 
    display: flex;
    background: #f1c40f; 
}

.enhancer-tooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    font-size: 11px;
    color: var(--text-color);
    border-radius: 4px;
    border: solid 1px var(--border-color);
    background: #333;
    transform: translateY(-35%);
    padding: 5px 10px;
    margin-right: 5px;
    white-space: nowrap;
    z-index: 10;
}

