<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 5px;
    width: 600px;
    z-index:999;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 16px;
    color: #333;
}

.close-button {
    cursor: pointer;
    font-size: 20px;
    color: #999;
}

.subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor:pointer
}

.icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.icon-text {
    font-size: 12px;
    color: #333;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox {
    margin-right: 5px;
}

.checkbox-label {
    font-size: 12px;
    color: #333;
}

.start-button {
    float: right;
    background-color: #00BCD4;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.improvestate {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .improvestate img {
        width: 0.9vw;
        height: 0.9vw;
    }

    .improvestate span {
        font-size: 0.8vw;
        color: #838383;
        font-weight: 600;
        margin-left: 0.25vw;
    }

.improvetext {
    display: flex;
    align-items: center;
    color: #207bea;
    font-weight: 600;
    font-size: 0.7vw;
    margin: 0.5vw 0;
}

.improvebnt_div {
    height: 1.8vw;
    display: flex;
    background-color: #1baef3;
    padding: 0 1vw;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8vw;
    border-radius: 2vw;
    cursor:pointer;
}

.improved {
    color: #21c81f !important;
}
</pre></body></html>