@charset "utf-8";
/* CSS Document */

          html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; }
        .roadmap-card {
            border-left-width: 4px;
        }
        .rec-personal { border-color: #4ade80; } /* green-400 */
        .rec-alternative { border-color: #a78bfa; } /* violet-400 */
        .rec-optional { border-color: #facc15; } /* yellow-400 */

        .roadmap-item {
            cursor: pointer;
            transition: background-color: 0.2s ease-in-out;
        }
        .roadmap-item:hover {
            background-color: #f3f4f6;
        }
        html.dark .roadmap-item:hover {
             background-color: #374151;
        }
        
        .step-counter {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 9999px;
            background-color: #4f46e5;
            color: white;
            font-size: 0.875rem;
            font-weight: 600;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }
        html.dark .step-counter {
            background-color: #6366f1;
        }

        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: #cbd5e1;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        html.dark .timeline-container::after {
            background-color: #475569;
        }

        .timeline-block {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-block::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: white;
            border: 4px solid #60a5fa;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        html.dark .timeline-block::after {
             background-color: #1e293b;
             border-color: #38bdf8;
        }
        .left { left: 0; }
        .right { left: 50%; }
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid white;
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent white;
        }
        html.dark .left::before {
            border-color: transparent transparent transparent #1f2937;
        }
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }
        html.dark .right::before {
             border-color: transparent #1f2937 transparent transparent;
        }
        .right::after { left: -10px; }
        .timeline-content {
            padding: 20px;
            background-color: white;
            position: relative;
            border-radius: 6px;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }
         html.dark .timeline-content {
            background-color: #1f2937;
        }
        
        @media screen and (max-width: 1024px) {
          .timeline-container::after { left: 31px; }
          .timeline-block {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
          }
          .timeline-block::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
          }
           html.dark .timeline-block::before {
            border-color: transparent #1f2937 transparent transparent;
          }
          .left::after, .right::after { left: 21px; }
          .right { left: 0%; }
        }