@font-face {
  font-family: ubuntuRegular;
  src: url(Ubuntu-Regular.ttf);
}

* {
  font-family: ubuntuRegular;
}


body{
    background-color: white;
    color: black;
    margin: 0;
    height:100%;
    margin-bottom:0px;
}

.title{
  font-size:24px;
  font-weight:400;
}

.buy-box{
  display:block;
  border-radius:16px;
  border:1px solid #2D3142;
  padding:5px;
}

.jobs-menu{
  border-radius:16px;
  border:1px solid #2D3142;
  padding:5px;
  margin-top:5px;
}
.jobs-menu a{
  display:block;
  width:100%;
  text-decoration:none;
}
.jobs-menu-links{
  margin-bottom:5px;
}
.jobs-menu-links a{
  color:black;
  height:32px;
  line-height:32px;
  border-radius:16px;
  box-sizing: border-box;
}

.task{
  width:100%;
  border: 1px solid #2D3142;
  border-radius: 16px;
  padding: 5px;
  margin-bottom: 5px;
  text-decoration:none;
  box-sizing: border-box;
  color: black;
}



.dashboard-menu{
  display:flex;
  width:100%;
  height:33px;
  gap:5px;
  border: 1px solid #2D3142;
  background-color:transparent;
  border-radius: 16px;
  margin-bottom:5px;
  margin-top:5px;
  box-sizing: border-box;
}
.dashboard-menu a{
  text-decoration:none;
  color:black;
  height:32px;
  width:128px;
  line-height:10px;
  border-radius:16px;
  box-sizing: border-box;
  text-align:center;
  padding:10px;
}
.dashboard-menu a:hover{
  background-color:#2D3142;
  color:white;
  transition:.3s ease;
}





.image-box {
  position: relative;
  width: 100%;
  height:256px;
  border: 1px solid #eee;
  border-radius: 16px;
  text-decoration:none;
}
.image-box img{
  height:100%;
  width:100%;
  object-fit: cover;
  border-radius:16px;
}
.image-box .overlay-text {
  text-decoration:none;
}



      .jobs-menu a.selected {
        color: #EF8354;
        font-weight: bold;
      }

      .task-owner-profile-picture{
        display:inline-block;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        overflow: hidden;
        box-sizing: border-box;
      }

      .job-title{
        font-size: 1.4em;
        font-weight: bold;
        color:black;
        height:64px;
        line-height:53px;
        box-sizing: border-box;
      }




.toplinks{
  margin-top:5px;
}
.toplinks a{
  text-decoration: none;
  color: black;
}
.toplinks a:hover{
  transition: .3s ease;
	color: #EF8354;
}




.trade-bubble{
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 5px 10px;
  margin: 0 10px 10px 0;
  background-color: #f9f9f9;
}




.info-wrapper {
  display: inline-block;
  position: relative;
}

.info-wrapper {
  position: relative;
  display: inline-block;
}

.info-btn {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #EF8354;
  background: transparent;
  color: black;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  margin-top:5px;
  margin-bottom:5px;
}

.info-popup {
  position: absolute;
  top: 50%;
  left: calc(100% + 5px);
  transform: translateY(-50%) scale(.96);
  min-width: 200px;
  max-width: 280px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
  color: #111827;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 10;
}

  .info-wrapper:hover .info-popup,
  .info-wrapper:focus-within .info-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
  }

  .info-popup .popup-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 13px;
  }