 *{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 .notboid{
    width: 100%;
    height: 290px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

  

    }
    .not_board{
      width: 100%;
      height: 40vh;
      
   border-radius: 12px;
      overflow-y: scroll;

    }
    .title_Name{
      text-align: center;
      color: black;
      position: sticky;
    }
       .table-container {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 18px;
            background-color: white;
        }

        th, td {
            padding: 12px 15px;
            text-align: center;
            border: 1px solid #ddd;
        }

        th {
            background-color: #333;
            color: white;
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        tr:hover {
            background-color: #d1e0e0;
        }

        .icon {
            color: #3498db;
            font-size: 24px;
        }

        /* Responsive Design */
        @media screen and (max-width: 600px) {
            table {
                font-size: 14px;
            }
        }

        /* Button Style */
        .btn {
            background-color: #3498db;
            border: none;
            color: white;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            background-color: #2980b9;
        }

        /* Button Animation */
        @keyframes bling {
            0% {
                box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
            }
            50% {
                box-shadow: 0 0 20px rgba(255, 255, 255, 1);
            }
            100% {
                box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
            }
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.2);
            transition: width 0.3s ease;
        }

        .btn:hover::before {
            width: 100%;
            animation: bling 1.5s infinite;
        }

        .btn i {
            margin-right: 8px;
        }

        /* Mixed Color Table Rows */
        .row-blue {
            background-color: #3498db;
            color: white;
        }

        .row-black {
            background-color: #333;
            color: white;
        }

        .row-white {
            background-color: white;
            color: black;
        }

         /* Search input styling */
        .search-container {
            text-align: center;
            margin-bottom: 20px;
        }

        .search-input {
            padding: 10px;
            width: 80%;
            font-size: 16px;
            border: 3px solid black;
            border-radius: 5px;
            text-align: center;

        }