*{
  font-family: Arial;
}

body{
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #eee; 
}

.header{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  background-color: #4285f4;
  
  img{
    height: calc(100% - 8px);
    object-fit: contain;
  }
}

.button{
  display: flex;
  justify-content: center;
  min-width: 100px;
  padding: 8px 16px;
  align-self: center;
  font-size: 16px;
  color: #444;
  font-weight: 700;
  background-color: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  
  &:hover{
    border: 1px solid #c6c6c6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
}

.button.apply{
  color: white;
  background-color: #4D90fe;
  border: 1px solid #3079ed;
  
  &:hover{
    border: 1px solid #2F5bb7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
}

.content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 716px;
  margin: 20px auto;
  
  #backButton{
    align-self: flex-start;
    margin-inline-start: 8px;
  }
  
  .project__card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    width: 700px;
    min-height: 160px;
    margin: 8px;
    padding: 16px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
    box-sizing: border-box;
    
    .project__card--content{
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .project__card--title{
      font-size: 22px;
      font-weight: 700;
    }
    .project__card--text{
      display: block;
      font-size: 18px;
      white-space: pre-wrap;
    }
    .project__card--textsmall{
      font-size: 15px;
      white-space: pre-wrap;
    }
  }
}



form#postApplyCandidate #additionalFilesContainer{
  display: flex;
  flex-wrap: wrap;
  width: auto;
  height: inherit;
  margin-top: 1px;
  margin-bottom: 6px;
  gap: 6px;
  
  .fileItem{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    height: 26px;
    padding: 0 8px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    
    span{
      font-size: 14px;
    }
    .fa-file-lines{
      font-size: 16px;
    }
  }
}

.fa-x{
  font-size: 11px;
  transition: all 0.2s ease-out;
  opacity: 0.6;
}
.fa-x:hover{
  cursor: pointer;
  transform: scale(1.2) translateY(0.5px);
  opacity: 1;
}
  



@media screen and (max-width: 699px){
  .content{
    .project__card{
      width: calc(100% - 16px);
    }
  }
}

