.zcom-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.zcom-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.zcom-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 15px;
}

.zcom-close:hover,
.zcom-close:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.zcom-result-data p {
    font-size: 16px;
    margin-bottom: 20px;
}

.zcom-btn {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    display: inline-block;
}

.zcom-btn:hover {
    background-color: #005177;
    color: white;
}

.speed.top {
    color: #28a745;
    font-weight: bold;
}

.speed.ok {
    color: #fd7e14;
    font-weight: bold;
}

.speed.bad {
    color: #dc3545;
    font-weight: bold;
}

.zcom-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: #0073aa;
    animation: zcom-spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes zcom-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.zcom-error {
    color: #dc3545;
    font-weight: bold;
    margin: 20px 0;
}