
    .layer-control-box {
        position: absolute;
        top: 200px;
        right: 10px;
        width: 240px;
        padding: 10px;
        background: white;
        border: 1px solid rgb(172, 172, 172);
        border-radius: 5px;
        transition: top 1s ease;
        /*z-index: 1000;*/
    }
    .layer-control-box h4 {
        margin: 0;
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .save-button {
        margin-left: 5px;
        margin-top: 5px;
        padding: 3px;
        font-size: 15px;
        cursor: pointer;
        height: 24.5px;
        float: right;
    }
    .layer-control-box input[type="text"] {
        margin: 5px 0;
        font-size: 13px;
    }
    .color-button {
        width: 20px;
        height: 20px;
        border: 1px solid rgb(172, 172, 172);
        margin: 3px;
        cursor: pointer;
        display: inline-block;
        border-radius: 3px;
    }
    
    .close-control-button {
        font-size: 16px;
        border: none;
        background: #ffffff;
        cursor: pointer;
        position: absolute;
        top: 2px;
        right: 2px;
        width: 20px;
      }
    
    .checkbox-help-icon {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background-color: black;
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        cursor: pointer;
    }

    .checkbox-message {
        display: none;
        position: absolute;
        font-size: 12px;
        top: 33px;
        left: -200px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 10px;
        border-radius: 5px;
        max-width: 220px; /* Maximum width of the help message */
        width: 220px; /* Force width of the help message */
        word-wrap: break-word; /* Ensure text wraps */
    }

    .checkbox-help-icon:hover .checkbox-message {
        display: block;
    }

    .checkbox {
        display: contents;
    }
