.chlisList
{
    overflow:scroll;
    height:100%;
    min-height:70vh;
    max-height:85vh;
}
.btn_div_prodlit{
    position:relative;
    margin:10px auto;
    width:100%;
    text-align:center;
    padding:15px 0;
}
.btn_prodlit {
    width:100%;
    padding:14px 0 !important;
}
@media (min-width:768px) {
    .btn_prodlit {
        max-width: 50%;
    }
}

/*PayStyle*/
.cart {
    display:flex;
    flex-direction: column;
    height: 100%;
    border: 2px dashed gray;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right : 0;
    bottom:0;
    width: 100%;
    height: 100%;
    overflow:hidden;
    background-color: rgba(0,0,0,0.5); /* semi-transparent dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* ensure it overlaps everything */
}

.progress-container {
    background-color: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
}
#monaco-editor {
    height: 55vh;
}
.tree-item {
    margin-left: 10px;
}

.tree-text {
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    background-color: #f0f0f0;
    margin-bottom: 3px;
    user-select: none;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100% ;
}

    .tree-text:hover {
        background-color: #e0e0ff;
    }

.arrow {
    margin-left: 5px;
    font-size: 0.8em;
}

.tree-children {
    margin-left: 20px;
    border-left: 1px dashed #ccc;
    padding-left: 10px;
}