/*
 Theme Name: Imperium Grading
 Theme URI: https://imperiumgrading.com
 Description: Imperium Grading WordPress Theme (Child of Bricks)
 Author: Design Twelve
 Author URI: https://designtwelve.co.uk
 Template: bricks
 Version: 1.1
 Text Domain: bricks
*/
/* The Red Dot */
.card-report-point {
    position: absolute;
    width: 22px; /* Slightly larger to fit text comfortably */
    height: 22px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
	border:2px solid white;
    
    /* Center the number inside */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Text styling */
    font-size: 11px;
    font-weight: bold;
    font-family: sans-serif;
    line-height: 1;
}
.card-report-img-block.front .card-report-point {
    background: #f9a602;
	    color: #000000;
}

.card-report-img-block.back .card-report-point {
    background: #7f1817;
    color: #ffffff;
}


/* Ensure the tooltip doesn't inherit the centering of the number */
.report-tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: normal; /* Override bold from parent */
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    pointer-events: none;
    z-index: 20;
}

.card-report-point:hover .report-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 160%;
}