
.status-container,
.scripts-container {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

/* Headline Styling */
.status-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Progress Bar Container */
.progress-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 30px;
}

#progress-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
}

#progress-slider::-moz-range-thumb {
    appearance: none;
}

/* Percentage Label */
#percentage-label {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
}

/* List Styling */
.status-list {
    list-style-type: none;
    font-size: 18px;
}

.status-list li {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.dashicons {
    font-size: 24px;
    margin-right: 10px;
}

.dashicons-yes {
    color: green;
}

.dashicons-no {
    color: red;
}
.task-count {
    font-size: 18px;
    margin-right: 15px;
    vertical-align: middle;
}
.scripts-container input{
    width:90%;
}