.checklist {
    list-style-type: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.checklist li {
    margin: 0  0 10px 0;
    padding: 5px;
    display: flex;
    align-items: center; /* Ensure items are vertically centered */
    border: 1px solid #ddd; /* Add border to each item */
    border-radius: 4px; /* Add border radius for rounded corners */
    background-color: #f9f9f9; /* Add background color */
    font-weight: bold;
}

.checklist li.completed {
    color: green;
    border: 1px solid green; /* Add border to each item */
}

.checklist li.incomplete {
    color: red;
    border: 1px solid red; /* Add border to each item */
}

.checklist li input[type="checkbox"] {
    margin-right: 15px;
    margin-top: 20px;
    margin-left:15px;
    width: 20px; /* Set a specific width for the checkbox */
    height: 20px; /* Set a specific height for the checkbox */
    vertical-align: middle; /* Align checkbox with the middle of the text */
    transform: scale(1.5);
}

.checklist-title {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

.xi-options .material-symbols-outlined {
    font-size: 26px !important;
    float: inline-start;
}
.xi-options .xi-xentral-info-loader {
    display: none;
    text-align: center;
    margin: 0 auto;
    height: 80px;
    width: 400px;
}
.rotate {
    animation: rotation 2s infinite linear;
    height: 26px;
    width: 26px;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}
.xi-options .xi-xentral-info-box {
    display: none;
}
.xi-options .xi-setting-error {
    margin-top: -15px;
    background-color: #a83e3e;
    color: white;
    margin-bottom: 15px;
    padding:3px 10px;
    font-size:80%;
}
.xi-options .xi-setting-success {
    margin-top: -15px;
    background-color: #55a83e;
    color: white;
    margin-bottom: 15px;
    padding:3px 10px;
    font-size:80%;
}
.xi-options .xi-api-status {
    padding:5px;
    display: block;
    width: 100%;
    text-align: center;
}
.xi-options .xi-api-status .material-symbols-outlined {
    font-size: 24px !important;
}
.xi-options .xi-api-offline,
.xi-options .xi-file-error {
    background-color: #a83e3e;
    color: white;
}
.xi-options .xi-api-online,
.xi-options .xi-file-online {
    background-color: #55a83e;
    color: white;
}
.xi-options .xi-api-test,
.xi-options .xi-file-test {
    background-color: #3e57a8;
    color: white;
}
.xi-options label {
    font-size:13px !important;
}
.xi-options input {
    font-size:13px !important;
}
.xi-options .xi-input-file {
    width: 93%;
    margin-left: 32px;
}
.xi-options .xi-file-status {
    margin-top: 1px;
    display: inline-block;
    height: 31px;
    width: 32px;
    text-align: center;
    padding: 5px;
    position: absolute;
}
.xi-options .xi-file-status .material-symbols-outlined {
    font-size: 22px !important;
}
.xi-options .xi-file-status .rotate {
    animation: rotation 2s infinite linear;
    height: 22px;
    width: 22px;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}
.xi-options .xi-xentral-info {
    display: none;
    border: 1px solid #55a83e;
    padding: 15px;
}
.xi-options .xi-xentral-info-label {
    display: inline-block;
    width: 140px;
    font-size: 13px;
    font-weight: bold;
}
.xi-options .xi-xentral-info-value {
    display: inline-block;
    width: 30%;
    font-size: 13px;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
