/* Code to change page width START */
.WaPlaceHolder { max-width: 100%; }
/* Code to change page width END */

#id_blTIXFA {
    width: 100%;
}

#board_info {
    border-radius: 20px;
}




/*for all of the css for the buttons*/
/*creates the blue buttons*/
.first_button {
    border-radius: 0px;
    border: none;
    background-color: #0068b3;
}

/*Call to Action Buttons*/
.callDiv {
  min-width: 150px;
  min-height: 20px;
  padding: 10px 10px 10px 10px;
  height: fit-content;
  overflow: visible !important;
  text-align: center;
}

.callToAction {
  width: 300px;
  height: 50px;
  vertical-align: center;
  border: none;
  border-radius: 5px;
  background-color: #cccccc;
  box-shadow: 3px 3px 12px -2px rgba(0, 0, 0, 0.2);
  color: black;
  cursor: pointer;
  opacity: 1;
  transition: 0.4s ease;
  font-size: 17px;
}

.callToAction:hover {
  transform: translateY(-1px);
  opacity: 0.8; 
}


.first_button:hover {
    background-color: #4681ac;
}

/*creates the black buttons*/
.second_button {
    border-radius: 0px;
    border: none;
    background-color: #333333;
}

.second_button:hover {
    background-color: #4D4D4D;
}

/*making a grid to generate three columns*/
.grid_buttons_1 {
    display: grid;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
}

/*centering the text as well as giving them the width height and color*/
.Buttons {
    text-align: center;
    width: 328px;
    height: 45px;
    color: white;
    cursor: pointer;
}

/*This is used for the blue buttons on the committee page call this anytime you would like that style*/
.main_button {
    background-color: #4681ac;
    border-radius: 0px;
    border: none;
}

/*centers the buttons*/
.grid {
    margin: auto;
}


.grid_committee {
    padding-bottom: 15px;
}

@media screen and (max-width: 1150px) {
    .Buttons {
        width: 300px;
    }
}

@media screen and (max-width: 990px) {
    .grid_buttons_1 {
        grid-template-columns: repeat(1, 1fr);
        gap: 38px;
    }

    .grid_committee {
        padding-bottom: 38px;
    }

    .Buttons {
        width: 570px;
    }
}

@media screen and (max-width: 630px) {
    .Buttons {
        width: 320px;
    }
}

.post {
    height: 400px;
    overflow-y: scroll;
}

.PrintButton {
  width: fit-content;
  aspect-ratio: 1/1;
  border: none;
  background-color: rgba(255, 0, 0, 0);
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.PrintButton:hover {
  transform: translate(0, -3px);
}

.PrintContainer {
  padding: 10px 10px 10px 10px;
  text-align: right;
  margin-bottom: 0px;
}