/* Volunteer page design*/

.filterContainer {
  display: inline-block;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 50px;
}

.filterContainer label {
  margin-right: 10px;
  font-weight: bold;
}

.filterContainer select {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}

.filterContainer select:hover,
.filterContainer select:focus {
  border-color: #888;
}


.card {
    width: 90%;
    margin-left: 5%;
    display:flex;
	justify-content: center;
  }
  
  .card-image {
    max-width: 325px;
    height: auto;
    position: center;
    margin-top: 20px;
	  display: block;
	  margin-left: auto;
  	margin-right: auto;
  }
  
  .card-title {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  .card-overview {
    margin-top: 10px;
    font-size: 0.9em;
  }
  
  .card-organization {
    margin-top: 10px;
    font-size: 0.9em;
  }
  
  .card-location {
    margin-top: 10px;
    font-size: 0.9em;
  }

 .card-button{
    background: #FF4742;
    border: 1px solid #FF4742;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito,roboto,proxima-nova,"proxima nova",sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;

 }

 .like-button{
  border: none;
  background:none;
  cursor: pointer;
  display: inline-block;
  font-family: nunito,roboto,proxima-nova,"proxima nova",sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 15px;
  min-height: 40px;
  color: #FF4742;
 }

 /* CSS styles for the heart icon */
.like-button .fa-heart {
  color: #ccc; /* Default color for the heart icon */
}

.like-button.liked .fa-heart {
  color: red; /* Change the color to red when the opportunity is liked */
}

 #dataList{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
 }

 .button-wrapper{
    display: flex;
    gap: 20px;
 }

 #volunteer_heading{
    margin-top: 100px;
    margin-left:35%;
    margin-bottom: 50px;
    color: black;
 }

 @media screen and (max-width: 1400px) {
	.card-image {
		max-width: 270px;
		height: auto;
		position: center;
		margin-top: 50px;
	  }
 }

 @media screen and (max-width: 1200px) {
	.card-image {
		max-width: 240px;
		height: auto;
		position: center;
		margin-top: 50px;
	  }
 }

 @media screen and (max-width: 850px) {
	.card-image {
		max-width: 220px;
		height: auto;
		position: center;
		margin-top: 50px;
	  }
 }
 @media screen and (max-width: 1000px) {
	.card-image {
		max-width: 230px;
		height: auto;
		position: center;
		margin-top: 50px;
	  }
 }



 /* Filter design */

/* major filter */
.multiselect {
  width: 200px;
}

.selectBox {
  position: relative;
}

.selectBox select {
  width: 100%;
  font-weight: bold;
}

.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#checkboxes {
  display: none;
  border: 1px #dadada solid;
}

#checkboxes label {
  display: block;
}

#checkboxes label:hover {
  background-color: #1e90ff;
}