* {
  box-sizing: border-box;
  margin: 0;
}
p {
  margin-top: 0;
  margin-bottom:0;
}
#root {
  padding: 2rem;
}

#titleVaga{
  color: red;
}

.vagas-header {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .vagas-header {
    display: block;
    align-items: center;
  }
  
}

.vagas-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid;
  min-height: fit-content;
  border-width: 1px;
  border-radius: 10px;
  border-color: #919090;
  padding: 20px 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  min-width: 500px;
}

.card-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-title {
  font-size: large;
  font-weight: bold;
  margin-bottom: 5px;
}

.card-description {
  margin-bottom: 20px;
}

.card-extra-info {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: auto;
}

.card-extra-info-text {
  display: flex;
  gap: 5px;
  align-items: center;
}

.send-button-vagas {
  cursor: pointer;
  height: 45px;
  width: 110px;
  min-width: 110px;
  background-color: #288348;
  color: white;
  border-width: 0;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;   
}
.send-button-vagas:hover{
  background-color: #288348;
  color: white;
}

.vagas-title {
  font-size: 1.8rem;
}

.category-filter {
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

.category-filter > select, .category-filter > input {
  border-radius: 10px;
  border-width: 1px;
  padding: 5px;
  height: fit-content;
  height: 40px;
  width: 250px;
  display: flex;
}

.search {
  position: relative;
}

.search > input {
  border-radius: 10px;
  border-width: 1px;
  padding: 5px;
  height: fit-content;
  height: 40px;
  width: 250px;
}

.search-icon {
  position: absolute;
  right: 3px;
  top: 7px;
}

.vagas-footer {
  display: flex;
  justify-content: end;
}

.next-page-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  border: none;
  background: none;
}

.search-button {
  background-color: transparent;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
  border-width: 0;
  border-radius: 10px;
}


