/* Custom styles goes here */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

.header{
    background-color: #0cbd88;
    color:#fff;
    padding:30px 20px;
}

.title{
    margin:0;
}

.subtitle{
    display:inline-block;
    margin: 5px 0 20px;
    opacity: 0.8;
}

.header input{
    background-color:rgba(0,0,0,0.3);
    width:100%;
    padding: 10px 15px;
    font-size: 14px;
    color: #FFF;
    border: 0;
    outline: none;
    border-radius: 50px;
}

.object-list{
    background: #8DB2B000;
    list-style: none;
    margin:0;
    padding:0;
    max-height:400px;
    overflow-y: auto;
}

.object-list::-webkit-scrollbar{
    width: 0.3rem;
}

.object-list::-webkit-scrollbar-track{
    background:rgb(223,227,221);
}

.object-list::-webkit-scrollbar-thumb{
    background: rgb(133,32,222);
    border-radius: 10px;
}

.object-list li{
    display: flex;
    padding: 20px;
}

.object-list img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.object-list .object-info{
    margin-left: 10px;
}

  .object-list .object-info h4{
    margin: 0 0 10px;
  }

  .object-list .object-info p {
    font-size: 12px;
  }

  .object-list li:not(:last-of-type) {
    border-bottom: 1px solid #eee;
  }

  .object-list li.hide {
    display: none;
  }


