/* PulseTabs 主题自定义样式 */

/* 平滑滚动 */
html { scroll-behavior: smooth; }

/* 卡片悬浮效果 */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

/* 侧边栏卡片悬浮 */
.sidebar-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}
.inst-btn[data-selected="true"] {
    background: #FF5E00 !important;
    color: white !important;
}
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}