/* ═══════════════════════════════════════════════════════════════════
   FAVORITEN / LIKES BUTTON
   ═══════════════════════════════════════════════════════════════════ */

.route-like-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.route-like-btn:hover {
    transform: scale(1.15);
}

.route-like-btn i {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.2s ease;
}

.route-like-btn.liked i {
    fill: #FF385C;
    stroke: #FF385C;
}

.route-like-btn:hover i {
    stroke: #FF385C;
}

.route-like-btn.liked:hover i {
    fill: #E31C5F;
    stroke: #E31C5F;
}
