/* SummitGPX badge */
.summitgpx-badge {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 4px 6px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    line-height: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summitgpx-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.summitgpx-badge img {
    display: block;
    height: 18px;
    width: auto;
}
