body {
  font-family: Arial;
}

.sidebar {
  width: 250px;
  background-color: #f4f4f4;
  padding: 1rem;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  padding: 10px;
  cursor: pointer;
  border-left: 3px solid transparent;
}

.sidebar li:hover,
.sidebar li.active {
  background-color: #ddd;
  /* border-left: 3px solid #FF6600; */
  border-left: 3px solid #123458;
}

/* .content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 950px;
}

.content-title {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: #4d90ca;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.card {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  width: 215px;
  height: 250px;
  font-size: 13px;
  text-align: center;
} */

.content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 950px;
}

.content-title {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  /* color: #4d90ca; */
  color: #123458;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.card {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  width: 215px;
  height: 250px;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .content {
    width: 100%;
    padding: 15px;
  }

  .card {
    width: 180px;
    height: 220px;
    font-size: 12px;
  }

  .content-title {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .content {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }

  .card {
    width: 100%;
    height: auto;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .content-title {
    font-size: 18px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
	.sidebar {
		display: none;
		position: absolute;
		z-index: 1000;
		background-color: #f4f4f4;
		width: 80%;
		height: auto;
		padding: 1rem;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	}

	.sidebar.show {
		display: block;
	}

	.sidebar-toggle {
		display: block;
	}
}

/* .sidebar-toggle {
	display: none;
} */
