.toolbox-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.toolbox-icon {
    font-size: 24px;
    color: white;
    cursor: pointer;
    background-color: black;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.toolbox-flyout {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    width: 250px;
}

.toolbox-flyout.visible {
    display: block;
}

.toolbox-flyout button {
    display: block;
    margin-bottom: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.toolbox-flyout button i {
    margin-right: 5px;
}


/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modal-content h2 {
    font-family: sans-serif;
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 24px;
    text-transform: uppercase;
}

.modal-content p {
    font-family: sans-serif;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.modal-buttons {
    display: flex;
    justify-content: space-around;
}

.modal-buttons .btn-confirm,
.modal-buttons .btn-cancel {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.modal-buttons .btn-confirm {
    background-color: #28a745;
    color: #fff;
}

.modal-buttons .btn-cancel {
    background-color: #dc3545;
    color: #fff;
}

.modal-buttons .btn-confirm:hover {
    background-color: #218838;
}

.modal-buttons .btn-cancel:hover {
    background-color: #c82333;
}
