toolipbody {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    line-height: 1.6;
    z-index: 671;
}

.eztooltip-container {
    position: relative;
    display: red;
    padding: 10px 20px;
    background-color: transparent;
    color: rgb(94, 105, 61);
    border-radius: 5px;
    cursor: pointer;
    z-index: 671;
}

.eztooltip-text {
    visibility: hidden;
    line-height: 1.2;
    width: 240px;
    background-color: #b3ddfd;
    color: #000000;
    text-align: center;
    border-radius: 10px;
    padding: 10px 0;
    position: absolute;
    z-index: 670;
    bottom: 90%; /* Position above the text */
    left: 50%;
    margin-left: -60px; /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.eztooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 20%;
    margin-left: -5px;
    border-width: 10px;
    border-style: solid;
    border-color: #b3ddfd transparent transparent transparent;
    z-index: 669;
}

.eztooltip-container:hover .eztooltip-text {
    visibility: visible;
    opacity: 1;
    z-index: 668;
}

Permissions-body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    z-index: 667;
}

.Permissions-eztooltip-container {
    position: relative;
    display: red;
    padding: 10px 20px;
    background-color: transparent;
    color: rgb(94, 105, 61);
    border-radius: 5px;
    cursor: pointer;
    z-index: 667;
}

.Permissions-eztooltip-text {
    visibility: hidden;
    width: 240px;
    background-color: #d4e0a9;
    color: #000000;
    text-align: center;
    border-radius: 30px;
    padding: 10px 0;
    position: absolute;
    z-index: 666;
    bottom: 90%; /* Position above the text */
    left: 50%;
    margin-left: -60px; /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.Permissions-eztooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 20%;
    margin-left: -5px;
    border-width: 10px;
    border-style: solid;
    border-color: #d4e0a9 transparent transparent transparent;
    z-index: 665;
}

.Permissions-eztooltip-container:hover .Permissions-eztooltip-text {
    visibility: visible;
    opacity: 1;
    z-index: 664;
}

/* Popup container */
.Abstract-popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top */
}

/* Centered popup */
#Abstract-popup {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Positioned popup */
#Abstract-popup2 {
    position: fixed; /* Fixed position */
    left: 10px; /* Position from the left */
    top: 50px; /* Position from the top */
    width: 100px; /* Adjust width as needed */
    height: auto; /* Adjust height as needed */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Popup content */
.Abstract-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Close button */
.Abstract-close {
    position: absolute;
    top: 1220px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.Abstract-close:hover {
    color: #000;
}

/* Custom content styling */
.custom-content {
    text-align: center;
}

.custom-content h2 {
    margin-bottom: 10px;
}

.custom-content p {
    margin-bottom: 20px;
}
