/* Space between logo and Share Contact button */
.logo-wrapper {
    margin-bottom: 20px !important;
}

/* Share Contact pill button */
.event-title h2 {
    background: none !important;
    padding: 0 !important;
}

.event-title h2 p {
    margin: 0 !important;
    position: relative;
    display: inline-block;
}

.event-title h2 p br {
    display: none !important;
}

.event-title h2 a {
    position: relative;
    display: inline-block !important;
    background-color: #0f93d5 !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-family: 'Space Mono', monospace !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(15, 147, 213, 0.3);
}

/* Animated outline that "draws" around the pill */
.event-title h2 p::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    padding: 3px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        #ffffff 40deg,
        #7fd4ff 80deg,
        transparent 120deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: spin-outline 2.5s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes spin-outline {
    to {
        transform: rotate(360deg);
    }
}