
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body{
    /* background: url("https://maps.googleapis.com/maps/api/staticmap?center=Brooklyn+Bridge,New+York,NY&zoom=13&size=600x300&maptype=roadmap&markers=color:blue%7Clabel:S%7C40.702147,-74.015794&markers=color:green%7Clabel:G%7C40.711614,-74.012318&markers=color:red%7Clabel:C%7C40.718217,-73.998284&sensor=false") */
    overflow-y: hidden;
    background-color: rgb(49, 49, 49);
}


.List-of-users {
    position: absolute;
    bottom: 100px;
    text-align: center;
}

div.scrollmenu {
  overflow: auto;
  white-space: nowrap;
  text-align: center;
}

div.scrollmenu div {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

.search-box {
    position: fixed;
    text-align: center;
    width: 100%;
    margin-top: 150px;
    font-size: 30px;    
}

.my-profile-btn {
    padding: 10px;
    margin-top: 50px;
    background-color: white;
    display: block;
    width: 60%;
    margin-left: 20%;
    border-radius: 15px;
    color: black;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
}

.search-box .icon {
    background-color: white;
    padding: 25px;
    margin-right: -10px;
}

.fa-certificate {
    color: rgb(72, 133, 161);
}

input[type=text] {
    width: 50%;
    height: 50px;
    font-size: 30px;
    -webkit-appearance: none;
    box-shadow: black 5px 5px 10px 1px; 
    padding: 40px;
}

/* Profile Picture */
.worker_icon {
    object-fit: cover;
    width: 200px;
    height: 200px;
    overflow:scroll;
    border-radius: 50%;
}
/* Profile Card */
.profile {
    border: 1px solid black;
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    max-width: 400px;
    min-width: 400px;
    min-height: 500px;
    max-height: 500px;
    margin-left: 25px;
    margin-right: 25px;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.profile:active {
    background-color: rgb(141, 141, 141);
}

.profile .name {
    font-size: 35px;
}

.profile .work {
    margin-top: -20px;
}

.profile .status {
    font-size: 30px;
}
.profile .text {
    color: black;
    font-family: 'Roboto', sans-serif;
}
/* Statuses */
.available {
    color: green;
    text-decoration: underline;
}
.unavailable {
    color: red;
    text-decoration: underline;
}
.flag {
    border-radius: 25px;
    transform: translateY(10px);
}


.autocomplete {
    position: relative;
    display: inline-block;
    text-align: center;
}

.autocomplete-items {
    text-align: center;
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    width: 50%;
    margin-left: 25%;
    font: 28px Arial;  
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}