
/* subpage　のcss まとめ */

/* setup page ================*/
/*dist button */
.distro-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 推奨（Ubuntu）のアクティブ・ホバー状態 */
.distro-card.active {
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.15);
}

.distro-card:not(.disabled):hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* タブの基本スタイル */
.setup-tab {
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

/* アクティブ時のインジケーター（横棒） */
.setup-tab::after {
    content: "";
    position: absolute;
    bottom: -1px; /* 親の border-bottom と重ねる */
    left: 0;
    width: 100%;
    height: 3px;
    background: #3016c2; /* サイトに合わせて Linuxグリーン #4af626 でもOK */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.setup-tab.active {
    color: #1a1a1a;
}

.setup-tab.active::after {
    transform: scaleX(1);
}

/* コンテンツ表示のフェードイン */
.setup-pane {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* subpage setup-guide */