.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  
.search-bar {
    width: 50%;
    height: 35px;
    border: 1px solid #ccc;
    border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
    padding-left: 10px;
    font-size: 16px;
}
  
.search-button {
    width: 20%;
    height: 35px;
    border: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
    background-color: #343a40;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.table {
	border-collapse: collapse;
	border-spacing: 0 0;
  }
  .table td {
    border-bottom: 1px solid #ccc;
    padding: 1em;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .table td:hover {
    background-color: #f5f5f5;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .table td:first-of-type {
    border-radius: 10px 0 0 0;
  }

  .table td:last-of-type {
    border-radius: 0 10px 0 0;
  }
.menu-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.menu-item {
	width: calc(33.33% - 20px);
	background-color: #f2f2f2;
	height: 150px;
	margin: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	text-decoration: none;
}

.menu-item:hover {
	background-color: #e6e6e6;
	box-shadow: 0px 0px 10px #999;
	transform: translateY(-5px);
}

.menu-item i {
	font-size: 36px;
	color: #333;
	margin-bottom: 20px;
}

.menu-item h3 {
	font-size: 18px;
	color: #333;
	margin: 0;
}