a{
  color: black;
  text-decoration: none;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.head{
  font-family: "Jersey 20", sans-serif;
  height: 400px;
  width: 700px;
   border-radius: 30px;
  background: #faf6f6;
  box-shadow: 15px 15px 30px #bebebe,
             -15px -15px 30px #ffffff
}
.mainContent{
  display: flex;
  justify-content: center;
  align-items: center;
  
}


body{
  background-color: rgb(225, 225, 225);
  /* background-color: rgb(13,17,23) */
}
h1{
  /* color: whitesmoke; */
}
.navbar {
  /* background-color: #f2f2f2; */
  background-color:  rgb(235, 235, 235);
  min-width: 400px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}

.navbar.dark-mode {
  background-color: #4c4b4b;
  color: #f2f2f2;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 40px;
  margin-right: 30px;
  margin-left: 10px;
}

.navbar-brand h1 {
  margin-left: 10px;
  font-size: 35px;
  margin: 0;
}

.navbar-search {
  display: flex;
  align-items: center;
  border-right: 1px solid #ccc;
  padding-right: 15px;
}

.navbar-search input {
  padding: 8px 12px;
  border: none;
  border-radius: 20px;
  margin-right: 10px;
  width: 200px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.navbar.dark-mode .navbar-search input {
  background-color: #dbdbdb;
  color: #ffffff;
}

.navbar-search input:focus {
  outline: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 250px;
}

.navbar-search input:hover {
  background-color: #f0f0f0;
}

.navbar.dark-mode .navbar-search input:hover {
  background-color: #4b4b4b;
}

.navbar-search button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.navbar-search button:hover {
  background-color: #0056b3;
}

.clearButton {
  background-color: #ef2e2e;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}



.navbar-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 15px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

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

.navbar-switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.navbar-switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}






.mainContainer{
  display: flex;
  justify-content: center;
  height:685px;
  border-radius: 10px;
  width: 93%;
  /* background-color: #f1efef; */
  /* rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset  */
  
}

.main{
  
  min-width: 800px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ContainerVisible{
  /* border: 1px solid black; */
  border-radius: 10px;
}
.leftArea{
  height: 98%;
  width: 340px;
  margin: 5px;
  /* border: 1px solid rgb(255, 39, 219); */
  border-radius: 6px;
}
.userProfile{
  margin-top: 50px;
  margin-left: 50px;
  height: 230px;
  width: 230px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset ;
  /* border: 1px solid black; */
  overflow:hidden;
}
.imageConfig{
  height: 230px;
  width: 230px;
  
}
.nameContainer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Jersey 20", sans-serif;
  font-size: 30px;
  height: 90px;
  width: 100%;
  /* border: 1px solid black; */
}
.loginNameContainer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Jersey 20", sans-serif;
  font-size: 18px;
  color: rgb(97, 97, 97);
  height: 20px;
  width: 100%;
}
.nameholder{
  font-size: 30px;
}
.bioContainer{
  margin-left: 12px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 296px;
  /* border: 1px solid black; */
}

.followContainer{
  
  display: flex;
  align-items: center;
  height: 40px;
  width: 100%;
  /* border: 1px solid black; */
}
.followers{
  margin-left: 28px;
  height: 20px;
  width: 120px;
  font-family: "Jersey 20", sans-serif;
  text-align: center;
  /* border: 1px solid black; */
}
.horizontalLine{
  margin: 0px;
  transform: rotate(90deg);
  width: 25px;
}
.following{
  height: 20px;
  width: 120px;
  font-family: "Jersey 20", sans-serif;
  text-align: center;
  /* border: 1px solid black; */
}

.hr2{
  width:270px;
  color: black;
}
.bioSection{
  margin-left: 5px;
  width: 290px;
  /* border: 1px solid black; */
}
.hr3{
  width:300px;
  color: black;
}
.company{
  display: flex;
  width: 100%;
}
.companyLogo{
  width: 35px;
  background-size:contain;
}
.companyName{
  display: flex;
  justify-content:left;
  align-items: center;
  font-size: 13px;
}

.location{
  display: flex;
  width: 100%;
  /* border: 1px solid black; */
}
.locationLogo{
  width: 35px;
  background-size: contain;
}
.locationName{
  display: flex;
  align-items: center;
  width: 100%;
  /* border: 1px solid black; */
  font-size: 13px;
}

.twitter{
  display: flex;
  width: 100%;

}
.twitterLogo{
  width: 35px;
  background-size: contain;
}
.twitterUsername{
  margin-left: 5px;
  display: flex;
  align-items: center;
  width: 100%;
  /* border: 1px solid black; */
  font-size: 13px;
}

.rightArea{
  height: 98%;
  width: 1110px;
  margin: 5px;
  /* border: 1px solid green; */
  border-radius: 6px;
}
.repoCountHolder{
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.repoCount{
  font-family: "Jersey 20", sans-serif;
  width: 195px;
  /* border: 1px solid black;
  border-radius: 30px; */
  text-align: center;
  transition-duration: .6s;
  transition-timing-function: ease-in-out;
  transition-property:all ;
}

.repoCount:hover{
  color: red;
  
}

.statusReport{
  display: flex;
  flex-wrap: wrap;
  max-height: 240px;
  overflow: hidden;
  /* align-items: center;
  justify-content: center;
  height: 250px; */

} 
.repoHolder{
  height: 100%;
  margin: 0px;
  border-radius: 4px;
  overflow: hidden;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;

}
.repoConfig{
margin: 1px;
height: 76px;
width: 258px;
border: none;
margin: 0px;
}

.manualRepoHolder{
  height: 43px;
  width: 172px;
  border: 1px solid black;
  border-radius: 4px;
  margin: 1px;
}
.visualStatusArea{
  height: 384px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.upperVisualStatusArea{
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content:space-evenly;
}
.upperVisualStatusArea_Left{
  height: 100%;
  width: 45%;
  display: flex;
  align-items: center;
  border: 1px solid rgb(234 225 225);
  border-radius: 4px;
}
.languageReport{
  height: 100%;
  width: 100%;
  border: none;
}
.contributionReport{
  height: 100%;
  width: 100%;
  border: none;
}
.upperVisualStatusArea_Right{
  height: 100%;
  width: 50%;
  border: 1px solid rgb(234 225 225);
  border-radius: 4px;
  overflow: hidden;
}

.lowerVisualStatusArea{
  height: 190px;
  width: 100%;
  display: flex;
  /* border: 1px solid black; */
}
.lowerVisualStatusArea_Left{
  height: 100%;
  width: 30%;
  /* border: 1px solid black; */
}
.gitStats0{
  height: 100%;
  width: 100%;

  border: none;
}

.lowerVisualStatusArea_Mid{
  height: 100%;
  width: 32%;
  /* border: 1px solid black; */
}
.gitStats1{
  height:100%;
  width: 100%;
  border: none;
}

.lowerVisualStatusArea_Right{
  height: 100%;
  width: 36%;
  /* border: 1px solid black; */
}
.gitStats2{
  height:100%;
  width: 100%;
  border: none;
  /* overflow-x: hidden; */
}
.button{
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}