body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 20px;
}

#searchInput {
  padding: 10px;
  margin-bottom: 10px;
}

#userInfo {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

img {
  width: 100px;
  border-radius: 50%;
}

#loadingIndicator {
  display: none;
}

#errorMessage {
  color: red;
}

/* Modal Styles */
#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}

.close-btn {
  cursor: pointer;
  font-size: 20px;
  color: #555;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Chart Styles */
#chartContainer {
  max-width: 600px;
  margin: 20px auto;
}

/* Recent Activity Section */
#activity {
  max-width: 600px;
  margin: 20px auto;
  text-align: left;
}

#activityList {
  list-style: none;
  padding: 0;
}

#activityList li {
  margin-bottom: 10px;
}

/* Repositories Section */
#repositories {
  max-width: 600px;
  margin: 20px auto;
  text-align: left;
}

#repositoriesList {
  list-style: none;
  padding: 0;
}

#repositoriesList li {
  margin-bottom: 10px;
}

/* Sort and Filter Styles */
#sortFilter {
  max-width: 600px;
  margin: 20px auto;
  text-align: left;
}

label {
  margin-right: 10px;
}

/* Statistics Section */
#statistics {
  max-width: 600px;
  margin: 20px auto;
  text-align: left;
  }
  

/* Repositories Section */
#repositories {
  max-width: 800px;
  margin: 20px auto;
  text-align: left;
}

#repositoriesList {
  list-style: none;
  padding: 0;
}

#repositoriesList li {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.repo-details {
  flex-grow: 1;
}

.repo-details strong {
  font-size: 18px;
}

.repo-details p {
  margin: 5px 0;
}

.repo-actions button {
  padding: 10px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.repo-actions button:hover {
  background-color: #45a049;
}

/* Modal Styles */
#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}

.close-btn {
  cursor: pointer;
  font-size: 20px;
  color: #555;
  position: absolute;
  top: 10px;
  right: 10px;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-profile-container {
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

.user-profile-container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.user-profile-container h2 {
  color: #0366d6;
  margin-bottom: 10px;
}

.user-profile-container p {
  margin-bottom: 8px;
}

.user-profile-container strong {
  font-weight: bold;
}

.user-profile-container .info-section {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.user-profile-container .info-section p {
  flex: 1;
}

.user-profile-container .view-on-github {
  margin-top: 20px;
}

.user-profile-container a.btn {
  text-decoration: none;
  color: #fff;
  background-color: #0366d6;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.user-profile-container a.btn:hover {
  background-color: #034887;
}

