 body {
            font-family: "Source Code Pro", monospace;
            margin: 0;
            padding: 0;
            background: #fafafa;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        a {
            color: #555;
        }
        
        a:hover {
            color: #333;
            text-decoration: underline;
        }

        .btn-primary {
            background-color: #333;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #555;
            text-decoration: none;
            color: white;
        }
        
        .brand, .brand:visited, .brand:hover {
            font-family: "Special Gothic Expanded One", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 24px;
            color: #333;
            text-decoration: none;
            text-align: center;
            display: block;
        }
        
        .container {
            padding: 16px;
        }
        
        .content {
            max-width: 800px;
            margin: 0 auto;
            padding: 16px;
            font-size: 18px;
            line-height: 1.6;
            color: #555;
        }

        .table-container {
            text-align: center;
            overflow: auto;
        }
        
        h1 {
            font-family: "Source Code Pro", monospace;
            font-weight: 400;
            font-style: normal;
            font-size: 48px;
            color: #333;
            margin-top: 40px;
            text-align: center;
        }

        h2 {
            font-family: "Source Code Pro", monospace;
            font-weight: 600;
            font-style: normal;
            font-size: 18px;
            color: #333;
            margin-top: 32px;
            text-align: center;
        }
        /* media for large screens */
        @media (min-width: 768px) {
            .table-container {
                padding: 0 180px !important;
            }
        }
        
        table {
            width: 100%;
            padding: 16px;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 14px;
        }

        
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
            vertical-align: top;
        }
        
        th {
            background-color: #f5f5f5;
            font-weight: 500;
            color: #333;
        }
        
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .phase-header {
            background-color: #e8e8e8 !important;
            font-weight: 500;
            color: #333;
        }
        
        .months {
            font-weight: 500;
            color: #333;
        }
        
        footer {
            margin-top: 40px;
            padding: 16px;
            text-align: center;
            font-size: 14px;
            color: #777;
        }

        .emphasis {
            font-weight: 600;
            color: #333;
            display: block !important;
            margin-top: 8px;
            background: #eee;
            padding: 4px;
            border-radius: 4px;
        }
        /* exclamation emoji */
        .emphasis::before {
            content: "📢 ";
            margin-left: 4px;
        }