body {
            font-family: Arial, sans-serif;
            background-color: #1a1a1a;
            color: #ffffff;
            margin: 0;
            padding: 0;
        }
        .container {
            padding: 20px;
        }
        .highlight {
            color: #ffa500;
        }
        .panel {
            background-color: #333;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
        }
        .panel-header {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .panel-content {
            font-size: 14px;
            line-height: 1.6;
            flex: 1;
        }
        .panel-content-right {
            font-size: 14px;
            line-height: 1.6;
            flex: 1;
            text-align: right;
            padding-left: 20px;
        }
        .panel-content-foot {
            font-size: 14px;
            line-height: 1.6;
            flex: 1;
            text-align: center;
            padding-left: 150px;
        }
        a.row-link {
            display: block;
            color: inherit;
            text-decoration: none;
        }
        a.row-link:hover {
            text-decoration: underline;
        }
        .footer {
            text-align: center;
            padding: 8px;
            background-color: #333;
            width: 98.8%;
            bottom: 0;
            left: 0;
            color: #ffa500;
        }
        .button {
            background-color: #ffa500;
            color: #1a1a1a;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .button:hover {
            background-color: #ff8800;
        }
        .nav-bar {
            background-color: #333;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-title {
            color: #ffa500;
            font-size: 18px;
            font-weight: bold;
        }
        
        .nav-links a {
            color: #ffa500;
            text-decoration: none;
            padding: 0 15px;
        }
        
        .nav-links a:hover {
            text-decoration: underline;
        }

        table {
            border-collapse: collapse;
            width: 50%;
        }
        th, td {
            border: 1px solid #ffffff;
            text-align: center;
            padding: 8px;
        }
        th {
            background-color: #333333;
        }
        tr:nth-child(even) {
            background-color: #2c2c2c;
        }
        tr:nth-child(odd) {
            background-color: #3c3c3c;
        }
.button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #ffa500;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #9e6700;
  }
  
  .button:hover {background-color: #3e8e41}
  
  .button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
  }
.menu-container {
            background-color: #ffa500;
            padding: 10px;
            display: inline-block;
            border-radius: 5px;
            position: relative;
        }
        .menu-text {
            display: inline-block;
            margin-right: 10px;
        }
        .menu-buttons {
            display: inline-block;
            margin-right: 8px;
        }
        .info-icon {
            display: inline-block;
            margin-left: 5px;
            position: relative;
            cursor: pointer;
        }
        .info-icon::before {
            content: 'i';
            display: inline-block;
            background-color: #00d300;
            color: white;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 12px;
        }
        .tooltip {
            display: none;
            background-color: #00d300;
            color: white;
            padding: 10px;
            border-radius: 5px;
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            z-index: 10;
        }
        .info-icon:hover .tooltip {
            display: block;
        }