/* supervisionbadge.css */

/* Styles for the supervision badge */
.supervision-badge {
    position: relative;
    display: inline-block;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background-color: green;
    border: 1px solid green;
    padding: 10px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    z-index: 10;
    font-family: Arial, sans-serif;
}

.supervision-name, .supervision-age {
    display: block;
    font-size: 14px;
    margin: 5px 0;
}

.supervision-picture {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Default profile icon style */
.supervision-picture[src="default-profile-icon.png"] {
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

/* Styles for the supervision block label */
.supervision-block-label {
    cursor: pointer;
    color: white;
}

/* Enlarged image effect for the profile picture */
.supervision-picture.enlarged {
    transform: scale(3.5);  /* Increase the size by 3.5x */
    transition: transform 0.3s ease; /* Smooth transition */
    cursor: pointer;  /* Change cursor to indicate interactivity */
}

/* Enlarged effect for the ID picture container and image */
.id-picture-container.enlarged {
    transform: scale(20);  /* Scale the container along with the image */
    transition: transform 0.3s ease; /* Smooth transition */
    position: absolute;
    z-index: 9999; /* Make sure it's on top */
}

.id-picture.enlarged {
    transform: scale(1.0);  /* Adjust scale for image */
    transition: transform 0.3s ease; /* Smooth transition */
    cursor: pointer;  /* Change cursor to indicate interactivity */
}

/* Styles for the supervision badge menu icon */
.supervision-badge-menu-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: white;
    
}
