body{
        font-family: 'Segoe UI', sans-serif;
}
    h1, h2, h4 {
      font-weight: 600;
    }
    .card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    }
    .list-group-item:hover {
      background-color: #f1f3f5;
    }
    pre {
      background-color: #f8f9fa;
      padding: 1rem;
      border-radius: 0.5rem;
      overflow-x: auto;
      transition: background 0.3s ease;
    }
    pre:hover {
      background-color: #e2e6ea;
    }
    .color-usage-code code {
      background-color: #eef;
      padding: 2px 6px;
      border-radius: 4px;
    }
    .alert {
      transition: all 0.4s ease-in-out;
    }
    header{
    width: 100%;
    height: 85px;

    border-bottom: 0.5px #e8e8e8 solid;
    display: flex;
   justify-content: space-between;
   position: relative;
}
  .section-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #434343;
  }

header #logo{
    max-width: 100%;
    height: auto;
    max-height: 55px;
    margin:15px 0px 5px 20px;
    float: left;
    position:absolute;
   
}
header nav{
    margin: 20px 10px 5px 20px;
    display: block;
    float: right;
}
header nav ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding-right: 10px;
    font-weight: 400;
}
header nav ul li{
   padding-left: 4px;
    padding-top: 8px;
   
}
header nav ul #liLogin{
  padding-top: 7px;
  padding-right: 4px;
  display: flex;
}
header nav ul #liLogin #login{
    
    height: 27px;

     
  text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

  
   
}
header nav ul #liLogin #login a{
    color:white;
}
header nav ul li a{
    color: black;
    text-decoration: none;
}
 header  #btnSearch{
      padding: 5px 13px 5px 13px;
      border-radius: 15px;
      border: 0.2px solid lightgray;
      background-color:rgb(253, 247, 236);
        
      box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.333);
      font-weight: 250;
      font-size: small;
      cursor: pointer;
      height: 30px;
      margin:17px 30px 0px 0px;
   
      
    }
.dropdown{
    display: none;
    float: right;
    margin: 10px 10px 5px 0px;
    position: relative;
    cursor: pointer;

}

@media (max-width: 768px) {

header{
  height: 75px;
}
 
 
    .dropdown{
        display: block;
        font-size: larger;
        margin: 13px 10px 5px 0px;
    }
    .fa-bars-staggered{
        font-size: larger;
        color: #00bf63;
        margin: 10px 5px 5px 0px;
    }
    header #logo {
        margin-top: 18px;
        max-height: 40px; /* Adjust max height for smaller screens */
    }
}