.container-search {
    margin: 10px 40px;
    height: 100vh;
    padding: 0px 10px;
}
fieldset {
    all: unset;
    background: white;
    /* border: 1px solid rgb(103, 103, 110); */
    border-radius: 16px;
    width: 90%;
    padding: 11px 20px;
    margin: 0px 20px;
    /* box-shadow: 1px 4px 2px 1px rgb(144, 144, 146); */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
  }
  
  legend {
    all: unset;
    border-radius: 10px;
    /* background-color: #4a90e2; */
    background-color: #4a90e2;
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0, 0.1);
    font-weight: bold;
    padding: 10px;
  }
  .or {
    all: unset;
    margin: 16px 0px;
    padding: 0;
    font-weight: bold;
}

/*Boootstrap table styling*/
 /* Set the fixed widths for columns */
        #myTable table {
          width: 100%;
        }
        #myTable th, #myTable td {
            text-align: center;  /* Center text inside the cells */
        }

        #myTable th:nth-child(1), #myTable td:nth-child(1) {
            width: 200px; /* Set fixed width for the Name column */
        }

        #myTable th:nth-child(2), #myTable td:nth-child(2) {
            width: 180px; /* Set fixed width for the Number column */
        }

        #myTable th:nth-child(3), #myTable td:nth-child(3) {
            width: 250px; /* Set fixed width for the Link column */
        }

        /* Ensure content that overflows gets truncated with ellipsis */
        #myTable td {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Add a subtle shadow effect around the table */
        .table {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        /* Hover effect for rows */
        .table-hover tbody tr:hover {
            background-color: #f1f1f1;
        }
        thead {
          background: #0056b3;
          color: white;
        }
        /* Header customization */
        .thead-dark th {
            background-color: #007bff;
            color: #fff;
            text-align: center;
        }

        /* Pagination styling */
        .pagination {
            justify-content: center;
            margin-top: 20px;
        }

        .pagination .page-item.active .page-link {
            background-color: #007bff;
            border-color: #007bff;
        }

        .pagination .page-item:hover .page-link {
            background-color: #0056b3;
            border-color: #0056b3;
        }

        /* Search input styling */
        .input-group .form-control {
            border-radius: 20px;
            box-shadow: none;
        }
        /* Custom width for the search input field */
        .bootstrap-table .search input {
            width: 400px; /* Set the desired width */
            margin-right: 10px; /* Add some space to the right side */
            padding-left: 20px; /* Optional: add some padding inside the search box for better UX */
        }
        .fixed-table-toolbar {
          background-color: #0056b3;
          width: 100%;
          height: 100%;
        }
        /* .fixed-table-pagination {
          background-color: #0056b3;
          width: 100%;
          height: 100%;
          color: white;
        } */
/*=========================*/