
/* Safe area for iOS devices with notch */
.safe-area-bottom[data-v-470b8534] {
    padding-bottom: env(safe-area-inset-bottom);
}

/* Active tab indicator */
.router-link-active[data-v-470b8534] {
    position: relative;
}
.router-link-active[data-v-470b8534]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: currentColor;
    border-radius: 0 0 3px 3px;
}

.line-clamp-2[data-v-40f23a44] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}
.prose-sm[data-v-40f23a44] p {
    margin: 0;
    display: inline;
}
.prose-sm[data-v-40f23a44] strong {
    font-weight: 600;
}
.prose-sm[data-v-40f23a44] ul,
.prose-sm[data-v-40f23a44] ol {
    display: none;
}

.scrollbar-hide[data-v-3d697176]::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide[data-v-3d697176] {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Styles moved to shared components */

/* Styles moved to shared components */

@keyframes slideUpFade {
from {
        opacity: 0;
        transform: translateY(20px);
}
to {
        opacity: 1;
        transform: translateY(0);
}
}
.animate-bounce-in {
    animation: slideUpFade 0.5s ease-out forwards;
}
