
    table-container {
      max-width: 100%;
      overflow-x: auto;
    }

        
    table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            background-color: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        th {
            background-color: #0086b3;
            color: white;
        }

        tr:hover {
            background-color: #f5f5f5;
        }
    
    /* Responsive design for mobile */
        @media screen and (max-width: 600px) {
            table {
                border: 0;
            }

            table thead {
                display: none;
            }

            table tr {
                margin-bottom: 10px;
                display: block;
                border-bottom: 2px solid #ddd;
            }

            table td {
                display: block;
                text-align: center;
                font-size: 14px;
                border-bottom: 1px dotted #ccc;
                position: relative;
                padding-left: 50%;
            }

            table td:before {
                content: attr(data-label);
                position: absolute;
                left: 10px;
                width: 45%;
                padding-right: 10px;
                font-weight: bold;
                text-align: left;
            }
        }

    .search-container {
            text-align: center;
            margin-top: 5px;
        }

        input[type="text"] {
            padding: 6px;
            width: 170px;
            border: 2px solid #00a2ff;
            border-radius: 4px;
            font-size: 16px;
        }

        button {
            padding: 6px 16px;
            background-color: #00a2ff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            margin-left: 5px;
            margin-top: 5px;
        }

        button:hover {
            background-color: #45a049;
        }
