/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #757575;
  padding: 6px;
}

.profile-image {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.github-logo {
  height: 40px;
  width: 40px;
}

.left-content {
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.side-container {
  position: fixed;
  left: 0;
  top: calc(57px); /* Adjust according to the height and padding of the top container */
  bottom: 0;
  width: 300px; /* Adjust the width of the container as needed */
  border-right: 1px solid #757575;
  padding: 20px;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.section {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.section img {
  margin-right: 10px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  height: 20px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.slider.round:before {
  border-radius: 50%;
}

.projects-image {
  width: 24px; 
  height: 24px;
}

.blog-image {
  width: 24px; 
  height: 24px;
}

.projects-content {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.blog-content {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.projects-content {
  display: flex;
  align-items: center;
  margin-right: 103px; /* Adjust this value */
}

.blog-content {
  display: flex;
  align-items: center;
  margin-right: 120px; /* Adjust this value */
}

.welcome-container {
  position: absolute;
  left: 300px; /* Same width as the side-container */
  top: calc(57px); /* Same height as the top container */
  right: 0;
  height: 90px; /* Add a fixed height */
  border-bottom: 1px solid #757575; /* Add a bottom border */
  padding: 0px;
  box-sizing: border-box;
}

.welcome-content {
  position: absolute; /* Change this line */
  top: 0; /* Add this line */
  left: 0; /* Add this line */
  width: 100%; /* Add this line to ensure the content takes the full width of the container */
  padding: 0 15px; /* Add horizontal padding to the content */
}

.welcome-container h1 {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 0.5;
}

.welcome-container p {
  font-size: 18px;
  font-weight: normal;
}

.main-container {
  align-content: flex-start;
  position: absolute;
  left: 300px; /* Same width as the side-container */
  top: calc(57px + 90px); /* Add the heights of the top container and welcome container */
  right: 0;
  bottom: 0;
  background-color: #bdbdbd; /* Light gray background */
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Align items at the start */
  align-items: flex-start;
  gap: 50px; /* Adjust the gap between the items */
  /* padding: 0 45px; */
}

.content-item {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  border: 1px solid #757575; /* Add a border */
  border-radius: 3px; /* Add rounded corners */
  padding: 10px; /* Add padding inside the content item */
}

.content-item-image {
  width: 100px;
  height: 100px;
  margin-right: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-item-image img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

.content-item-info {
  display: flex;
  flex-direction: column;
}

.content-item-title {
  font-size: 24px;
  margin-bottom: 5px;
  /* word-wrap: break-word; /* Break the word at the end of the line */
  /* overflow: hidden; /* Hide overflow */
  /* text-overflow: ellipsis; /* Add '...' to the end of the overflowing text */
  /* white-space: nowrap; /* Prevent the text from wrapping */
}

.content-item-description {
  font-size: 16px;
}

.content-container {
  margin-left: 50px;
  max-width: 400px;
  padding: 20px;
  width: calc(25% - 0px);
  margin-bottom: 0px;
}
