        body {
            font-family: Arial, sans-serif;
            background-color: #FFFFFF;
            margin: 1;
            padding: 0;
        }
        table {
            border-collapse: collapse;
            width: 100%;
            margin-bottom: 20px;
        }
        table, th, td {
            border: 1.6px solid black;
            padding: 8px;
            text-align: left;
            cursor: pointer;
            background-color: white;
            color: #000000;
        }
        th {
            background-color: #fb6542;
        }
        .popup-content {
            display: none;
            position: relative;
            background-color: #000000;
            border: 0px solid #888;
            padding: 15px;
            z-index: 1;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0,0,0,0);
            text-align: center;
            margin-top: 15px;
        }
        .popup-content p {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
            color: #ffffff;
        }
        .separator {
            width: 100%;
            border-top: 1px solid black;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .small-text {
            font-size: 10px;
            font-weight: normal;
        }
        .bold-text {
            font-weight: bold;
        }
        td.popup {
            width: 50px;
        }
        .first-column {
            position: sticky;
            left: 0;
            background-color: #000000;
            color: #ffffff;
            white-space: nowrap;
        }