/* Standardstil für das Ziel-Element */
.your-target-class {
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Stil beim Hover */
.your-target-class:hover {
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.8); /* Gelbes Leuchten */
    background-color: rgba(255, 255, 0, 0.2); /* Heller Hintergrund */
    cursor: pointer; /* Zeiger-Cursor */
}