

* {
    box-sizing: border-box;
}

/* home button testing */
.btnHome {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-left: 12px;
  margin-right: 12px;
  border-radius: 30px;
  overflow: hidden;
}
.btnHome::before, .btnHome::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.25s ease;
  border-radius: 30px;
}
.btnHome i {
  position: relative;
  color: #FFFFFF;
  font-size: 30px;
  margin-top: 15px;
  transition: all 0.25s ease;
}

.btnHome-fill::before {
  transition-duration: 0.5s;
  box-shadow: inset 0 0 0 1px #16A085;
}
.btnHome-fill:hover::before {
  box-shadow: inset 0 0 0 60px #16A085;
}
/* end home button testing */

/* start directory search */

.directory-search-section {
    margin-top: 10px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.directory-search-box{
    margin-top: 15px;
    margin-bottom: 15px;
    width: 95%;
    max-width: 900px;
}

#directorySearch {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 25px;
    border:none;
    outline: none;
    background: #161b22;
    color: #e6edf3;
  }

#directorySearch::placeholder {
    color: #8b949e;
}

#directorySearch:focus{
    box-shadow: 0 0 0 2px var(--focused) !important;
}

.directory-results {
    width: 70%;
    max-width: 900px;  
    margin: 0 auto;
    text-align: left;
}

.result-card {
    background-color: rgb(0, 255, 26) !important;
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px; 
    backdrop-filter: blur(1px);
}

.result-card h3 {
  margin: 0 0 8px;
}

.result-card line {
  text-align: center;
  margin: 20 0 10px;
  color: blue;
}
.result-card p {
  margin: 4px 0;
}