:root {
  --shadow: 0px 4px 16px 0px #00000040;
  --green-Color: #A8D060;
  --purple-Color: #8860D0;
  --black-color: #333333;
  --second-white: #F5F5F7;
  --second-purole: #C1C8E4;
}

section.sidebar-content-container {
  display: flex;
}

section.content-container {
  width: -webkit-fill-available;
  margin: 0 2% 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* sidebar style */

.sidebar-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: fit-content;
  padding: 1rem;
  background-color: var(--second-white);
  border-radius: 12px;
  margin: 0 0 0 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 10%;
  max-width: 6rem;
  align-items: center;
}

.sidebar-side a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 5rem;
  font-size: 14px;
  
}
#selected{
  color: var(--black-color);
  background-color: var(--green-Color);
  padding: 0.5rem;
  border-radius: 18px;
  cursor: pointer;
}

/* sidebar style */







.dashboard-container {
  padding: 20px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.dashboard-card {
  text-align: center;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.dashboard-card:hover {
  background-color: #eaf4fc;
}

.dashboard-card img {
  max-width: 60px;
  margin-bottom: 10px;
}


.content-container {
  padding: 20px;
  background-color: #f9f9f9;
  min-height: 100vh;
}

.container-head h1 {
  font-size: 32px;
  color: var(--primary-Color);
  margin-bottom: 30px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.dashboard-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.dashboard-card p {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .dashboard-card {
    padding: 15px;
  }

  .dashboard-card img {
    width: 50px;
    height: 50px;
  }

  .dashboard-card p {
    font-size: 14px;
  }
}


@media screen and (max-width: 1026px) {
  section.sidebar-content-container {
    display: flex;
    gap: 0rem;
  }



}

#External {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-Color);
  font-weight: 600;
}