/* Styles for the Layout Tester Inspector Feature */

/* Applied to an element when the mouse is hovering over it */
.inspector-hover {
    outline: 2px solid rgba(0, 110, 255, 0.7);
    outline-offset: -2px;
    cursor: pointer;
}

/* Applied to an element when it is clicked/selected */
.inspector-selected {
    outline: 3px solid #0052cc;
    outline-offset: -3px;
    box-shadow: 0 0 15px rgba(0, 82, 204, 0.5);
}
