    /* General Table and Cell Styles */
    td {
        font-family: Gadugi;
        font-size: 8pt;
    }

    .cell-day {
        font-family: Gadugi;
        font-size: 10pt;
    }

    .roundicon_micro {
        margin-left: 7px;
        margin-right: 7px;
        width: 40px;
        height: 40px;
        transform-origin: 0 50%;
        z-index: 54;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }

    .roundicon_36 {
        margin-left: 7px;
        margin-right: 7px;
        margin-bottom: 7px;
        margin-top: 7px;
        width: 40px;
        height: 40px;
        transform-origin: 0 50%;
        z-index: 54;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
    }

    /* Image Styles */    
    .roundface, .roundfield {
        margin-left: 7px;
        margin-right: 7px;
        width: 48px;
        height: 40px;
        border-radius: 10%;
        transition: transform 0.2s;
    }

    .roundface:hover, .roundfield:hover {
        transform: scale(3);
    }

    /* Notification Bar */
    .notification-bar {
        padding: 10px;
        margin-bottom: 15px;
        background-color: #e6f7ff;
        border-left: 5px solid #1890ff;
        border-radius: 5px;
        display: none;
        transition: opacity 0.5s;
    }

    /* Notification Bar */
    .snippit {
		
    }

/* 1. The container holding both images anchors the absolute positioning */
.snippit-container {
    position: relative;
    display: inline-block;
    cursor: zoom-in;
}

/* 2. The large image (Hidden by default) */

.snippit-img {
    display: none; 
    position: absolute;
    top: -50px; 
    
	/* REMOVE THIS: */
    /* left: 60px; */
    
    /* ADD THIS: Pushes the image out to the left side */
    right: 100%; 
    margin-right: 10px; /* Optional: adds a little breathing room between the thumbnail and the popup */
        
    z-index: 100; /* Fixed missing value */
    border: 2px solid #333;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    /* Set the size you want the zoomed image to be here */
    width: 58px;  /* Removed the duplicate 44px width */
    height: auto;
}



.snippit-container:hover .snippit-img {
    width: 256px;
    height: 184px;
    display: block;
}





.moonlogrows, table, tr, td {
    overflow: visible !important;
}

.moonphase-round {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}


/* Set a smooth transition for the elements */
.face-field-item {
    transition: transform 0.2s ease-in-out;
    cursor: pointer; /* Changes cursor to a pointer so it feels interactive */
}

/* Apply the zoom when the mouse is over the element */
.face-field-item:hover {
    transform: scale(1.618); /* Zooms the element by 5% */
}






