/********* Decision Support Home Page *********/
/* Removes pink background */
.node-unpublished {
    background-color: unset;
}

/*Getting rid of the white background on the h3's*/
.field-item .even h3 {
    background-color: unset;
}


/* Flexbox styling for the directory view */
.view-content {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  padding-left: 10%;
  padding-right: 10%;
  justify-content: center;
}

/* Create black rounded cards with a shadow */
.views-row {
  border-radius: 5px;
  background: black;
  box-shadow: 5px 5px 2px gray;
}

/* Set general text settings */
.directory-member-name, .directory-member-position {
  max-width: 220px;
  font-size: 18px;
  color: white;
  padding: 5%;
}

/* Set names to be orange */
.directory-member-name {
  color: #D73F09;
}

.divider-line {
  width: 40px;
  border: 2px solid #d73f09;
  height: 0px;
  margin-bottom: 30px;
}