:root {
  --main-color: #1992d4;
  --secondary-color: #f0b121;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.shadow {
  box-shadow: 1px 5px 4px rgb(0 0 0 / 15%);
}

.dashboard {
  height: 100vh;
  display: grid;
  grid-template-columns: 300px 1fr;
}
.sidebar {
  padding: 20px;
  background-color: var(--main-color);
  color: white;
}
.sidebar h1 {
  font-size: 25px;
}
.sidebar a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}
.sidebar a svg {
  fill: white;
  width: 45px;
}
.sidebar li {
  padding: 12px 10px;
}
.sidebar li a {
  font-size: 18px;
  font-weight: 500;
}
.sidebar li a svg {
  width: 22px;
  margin-right: 13px;
}
.main-content {
  background-color: #e2e8f0;
}
.main-content .header {
  padding: 15px 40px;
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 25px;
}

.main-content .header > div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-content .header svg {
  width: 25px;
}
.main-content .header .search input {
  flex: 1;
  padding: 8px;
  background-color: #e2e8f0;
  border: none;
  border-radius: 24px;
}
.main-content .header .notify {
  margin: 0 40px 0 auto;
  font-size: 18px;
}
.main-content .header .notify img {
  width: 50px;
  border-radius: 50%;
  margin: 0 15px;
}
.main-content .header .user img {
  width: 65px;
  border-radius: 50%;
}
.main-content .header .user .info p {
  font-weight: bold;
  margin-bottom: 6px;
}
.main-content .header .buttons button {
  width: 100px;
  padding: 10px;
  background-color: var(--main-color);
  color: white;
  border: 2px solid transparent;
  border-radius: 24px;
  font-weight: 500;
  font-size: 17px;
  cursor: pointer;
  margin: 0 8px;
  transition: 0.3s;
}

.main-content .header .buttons button:hover {
  background-color: transparent;
  border-color: var(--main-color);
  color: var(--main-color);
}

.user-work {
  padding: 30px 20px;
  display: flex;
  gap: 25px;
}
.user-work h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.user-work .project-side {
  flex: 1;
}
.user-work .projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 27px;
}
.user-work .projects-container .box {
  padding: 30px 20px;
  background-color: white;
  border-radius: 8px;
  border-left: 8px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.user-work .projects-container .box h4 {
  font-size: 20px;
}
.user-work .projects-container .box p {
  color: #6a6a6a;
  margin: 8px 0 0;
  font-size: 18px;
}
.user-work .projects-container .box .icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  margin-top: 15px;
}
.user-work .projects-container .box .icons svg {
  width: 25px;
  fill: #5f5f5f;
  cursor: pointer;
}

.announce-side {
  width: 400px;
}
.announce-boxes {
  padding: 15px 20px;
  background-color: white;
  border-radius: 8px;
  margin-bottom: 40px;
}
.announce-boxes .box {
  padding: 15px 8px;
}
.announce-boxes .box:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.announce-boxes .box h5 {
  font-size: 15px;
}
.announce-boxes .box p {
  color: #6a6a6a;
  margin-top: 5px;
  font-size: 14px;
}

.trending-boxes {
  padding: 20px 25px;
  background-color: white;
  border-radius: 8px;
}
.trending-boxes .box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trending-boxes .box:not(:last-of-type) {
  margin-bottom: 25px;
}
.trending-boxes .box img {
  width: 50px;
  border-radius: 50%;
}
.trending-boxes .box h6 {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin-bottom: 3px;
}
.trending-boxes .box p {
  font-size: 17px;
  color: #6a6a6a;
}
