.p-c-center {
    padding-top: 0px;
}

.wheel-container {
    min-height: calc(100vh - 40px);
}

.w-c-div-head {
    width: 100%;
    margin-bottom: 40px;
}

.w-c-title {
    box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
    border-radius: 8px;
    vertical-align: top;
    background: #fff;
    padding: 10px;
    font-size: 1.8rem! important;
    margin-bottom: 10px! important;
}

.w-c-tool-pn {
    box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
    border-radius: 8px;
    vertical-align: top;
    background: #fff;
    padding: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.w-c-tool-pn span,
.w-c-tool-pn a span {
    background: #dbdbdb;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
}

.w-c-tool-pn span:hover,
.w-c-tool-pn a span:hover {
    outline: none;
    box-shadow: 0 0 0 4px rgba(100, 150, 255, 0.3);
}

.w-c-tool-copy-this-wheel {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.w-c-tool-copy-this-wheel i {
    margin-right: 5px;
}

.w-c-wheel-zoom-btn {
    display: none;
}

.w-c-wheel-full {
    max-width: 90vh! important;
}

.c_ppmenuview {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 20;
    width: 200px;
    transform: scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    display: none;
}

.c_ppmenuview.show {
    transform: scale(1);
    pointer-events: auto;
    display: block;
}

.c_ppmenuview ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.c_ppmenuview ul li {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.c_ppmenuview ul li:hover {
    background: #f2f2f2;
}

.c_ppmenuview ul li i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    color: gray;
}

.c_ppmenuview ul a {
    all: unset;
    cursor: pointer;
}



@media (min-width: 900px) and (min-height: 450px) and (orientation: landscape) {
    .w-c-title {
        width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;
        max-height: calc(1.5em * 2 + 17px);
    }

    .w-c-wheel-full {
        position: absolute;
        width: min(75%, 90vh);
        max-width: none;
        left: max(min(25%, 65em), calc(50% - (min(75%, 90vh) / 2)));
    }

    .w-c-div-head {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 25%;
    }

    .w-c-tool-pn {
        margin-bottom: 0px;
    }
}







