@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,600&display=swap");


@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

:root {
  --box-shadow: rgba(0, 0, 0, 0.16) 0 2px 6px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Poppins", "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode",
    Arial, sans-serif;
  text-decoration: none;
  list-style: none;
}

.outer-wrap {
  width: 100%;
  min-height: 100vh;
  background: #f5f7fa;
  padding: 30px;
}

.inner-wrap {
  max-width: 1200px;
  margin: auto;
}

.flash {
  text-align: center;
  color: #04af04;
  font-size: 18px;
}
.warning {
  text-align: center;
  color: #f0720b;
  background-color: #d1d1d1;
  font-size: 18px;
}
.heading {
  margin: 30px;
}

.heading .title {
  font-size: 35px;
  color: #14539a;
  font-weight: 600;
  text-align: center;
}

.heading .subtitle {
  font-size: 20px;
  color: #a86124;
  font-weight: 400;
  text-align: center;
}

.create {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

.create .add {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 20px;
}

.create .add input#link {
  flex-grow: 1;
}

.create form input,
.create form select {
  font-size: 18px;
  border-radius: 7px;
  border: 1px solid #d1d1d1;
  padding: 10px;
}

.create form.add input[type="submit"] {
  border: 0;
  background-color: #2666cf;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
}
.create form.add input[type="submit"]:hover {
  background-color: #0b3c8b;
}

.create form option {
  font-size: 18px;
}

.category-list {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.category-list span {
  padding: 10px;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  margin: 5px;
}

.category-list span:hover {
  background: #d2d5dd;
}

.category-list .active {
  background-color: #2666cf !important;
  color: #fff;
}

.cards {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}

.card {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  padding: 10px;
  border-radius: 5px;
  width: 350px;
  margin: 7px 0;
}

.card:hover {
  background-color: #f7f7f7;
}

.card p.title {
  font-size: 17px;
  font-weight: 400;
}

.card .sub-information {
  display: flex;
  justify-content: space-evenly;
  margin: 10px;
}

.card .sub-information p {
  flex-grow: 1;
}

.card .sub-information .category {
  background-color: #2666cf;
  padding: 2px 7px;
  border-radius: 3px;
  color: #fff;
}

.card .sub-information .category.youtube {
  background-color: #ad1c1c;
}
.card .sub-information .category.dhis2 {
  background-color: #1468c2;
}
.card .sub-information .category.netflix {
  background-color: #4d4d4d;
}
.card .sub-information .category.others {
  background-color: #c47600;
}

.card .sub-information i {
  margin: 7px;
  font-size: 18px;
}
.card .sub-information .website {
  color: #463939;
}
.card .sub-information .search {
  color: #2666cf;
}
.card .sub-information .delete {
  cursor: pointer;
  color: #f10b2e;
}

@media (max-width: 800px) {
  .create .add {
    flex-direction: column;
  }
  .card {
    flex-grow: 1;
  }
}
