@import url("../fonts/A1/stylesheet2.css");


@keyframes slide-up {
    0% { /* from 이라고 작성해도 됩니다.*/
        opacity: 0;
        transform: translateY(100px);
    }

    100% { /* to 라고 작성해도 됩니다.*/
        opacity: 1;
        transform: translate(0);
    }
}


.navbar .nav-link {
    font-size: 1rem !important;
    font-weight: bold;
    cursor: pointer !important;
}

.background-light-custom {
    background-image: linear-gradient(21deg, #ffffff 10%, #f0f0f0 100%);
}

.material-symbols-rounded {
    cursor: pointer !important;
}

.fade, .slide-up {
    animation-fill-mode: forwards;
    opacity: 0;
}

.slide-up--active {
    animation-name: slide-up;
}

.slide--300ms {
    animation-delay: 300ms;
    animation-duration: 500ms;
}


/* Tag badge for inline hashtags */
.tag-badge {
    display: inline-block;
    padding: 2px 8px;
    margin: 2px 6px 2px 0;
    font-size: 0.8rem;
    line-height: 1.2rem;
    color: #344767;
    background: #f0f2f5;
    border: 1px solid #e0e6ef;
    border-radius: 999px;
    vertical-align: middle;
}

/* Optional accent color variations */
.tag-badge.info {
    color: #0a58ca;
    background: #e7f1ff;
    border-color: #cfe2ff;
}
