@font-face {font-display: swap;font-family: Roboto; src: url(/css/Roboto.woff2) format('woff2');}
@font-face {font-display: swap;font-family: AdorBold;src: url(/css/AdorBold.woff2) format('woff2');}
@font-face {font-display: swap;font-family: 'Hind';src: url(/css/Hind.woff2) format('woff2');}
@font-face {font-display: swap;font-family: 'Ador';src: url(/css/ador.woff2) format('woff2');}

        body {
            width: calc(100% - 10px);
            max-width: 700px;
            font-family: AdorBold;
            margin: 20px auto;
            background-color: #f4f6f9;
            color: #333;
            padding: 25px 0 0 0;
            overflow-x: auto;
        }

        .navigation a {
            background-color: #ffffff;
            color: #7534aa;
            text-decoration: none;
            font-weight: bold;
            float: left;
            width: calc(14.28% - 1px);
            padding: 10px 0;
            margin-right: 0.5px;
            margin-left: 0.5px;
        }
        .navigation {
            background-color: #525252;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: block;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .navigation a:hover {
            background-color: #e2e2e2;
        }
        .navigation .active {
            background-color: #525252;
            color: #fff;
        }


        .table-container {
            position: relative;
            margin-bottom: 30px;
        }
        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            font-size: 16px;
        }
        th, td {
            padding: 12px 8px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        th {
            padding: 5px 0 5px 0;
        }
        td {
            background-color: #fff;
        }
        .category-table tr:nth-child(odd) td {
            background-color: #ffffff;
        }
        .category-table tr:nth-child(even) td {
            background-color: #f8f9fa;
        }
        .top-table tr:first-child th:first-child {
            position: sticky;
            top: 41px;
            background-color: #38374d;
            color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding-top: 0;
        }

        table td:nth-child(3),
        table th:nth-child(3), .category-table tr td:first-child {
            text-align: center;
        }
        
        .table-container {
            counter-reset: rowNumber;
        }
        .serialTable tr td:first-child::before {
            counter-increment: rowNumber;
            content: counter(rowNumber) ". ";
        }

        .category-table hr {
            border: none;
            border-top: 1px solid #e0e0e0;
            margin: 0;
        }

.button-group {
    margin-bottom: 15px;
}

.shareBtn {
    font-family: AdorBold;
    width: 33.33%;
    float: left;
    height: 40px;
    cursor: pointer;
    background-color: #706da1;
    color: #fff;
    border: none;
    font-size: 17px;
}
#shareBtn {
    background-color: #8481be;
}
.shareBtn:hover {
    background-color: #5e5e5e;
}

        .copy-btn {
            cursor: pointer;
            background-color: #28a745;
            color: #fff;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            transition: background-color 0.2s;
        }
        .copy-btn:hover {
            background-color: #218838;
        }
        .error {
            color: #dc3545;
            text-align: center;
            margin: 20px 0;
        }
        #copy-dialog {
            position: fixed;
            top: 50%;
            left: 10%;
            width: 80%;
            padding: 40px 20px;
            box-sizing: border-box;
            background-color: #28a745;
            color: #fff;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none;
            font-size: 18px;
            text-align: center;
        }

     
        h2, h3, h1 {
            text-align: center;
            margin: 0 0;
            font-size: 17px;
            }
.top-table h2 {
margin-top: 44px;
}