/* for the social links on the about page */

.ul-socials {
  list-style-type: none !important;
  padding: 0;
  display: block;
  text-align: center;
}

.ul-socials li {
  display: inline-block;
}

.nested-links .ul-socials li a {
  text-align: center;
  padding: 8px;
  margin: 10px;
}
  
/* wrapping text around an image */

.image-left-250 {
    width: 250px !important;
    float: left;
    padding: 0 15px 15px 0;
  }

  .image-right-250 {
    width: 250px !important;
    float: right;
    padding: 0  15px 15px;
  }

  .image-center-250 {
    width: 250px !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

/********************************************
* styling for quizzes 
*********************************************/

.pronounce-button:hover {
  cursor: pointer;
}

.image-quiz {
  max-height: 250px !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.sanskrit-image-quiz {
  max-height: 100px !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.text-question {
  border: 2px solid #000; /* Black border with 2px width */
  border-radius: 15px; /* Rounded corners with 15px radius */
  padding: 20px; /* Padding inside the box */
  text-align: center; /* Center the text inside the box */
  background-color: rgb(245, 245, 220);
}

.quiz-form-control {
  padding-left: 5px;
}

.hide-at-start {
  visibility: hidden;
}

/********************************************
* accordian.  inspiration from 
* https://codepen.io/Anotherdago/pen/yjVxOB 
*********************************************/

.accordion-content {
  display: none;
}

/********************************************
* collapsible content.  inspiration from 
* https://www.digitalocean.com/community/tutorials/css-collapsible 
*********************************************/

.wrap-collapsible input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;
  font-weight: bold;
  font-family: monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;

  padding: 1rem;

  color: #A77B0E !important;
  background: #e8ede6;

  cursor: pointer;

  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
  color: #7C5A0B !important;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;

  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

.collapsible-content .content-inner {
  background: rgba(250, 224, 66, .2);
  border-bottom: 1px solid rgba(250, 224, 66, .45);

  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .5rem 1rem;
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;

  transition: max-height .25s ease-in-out;
}


.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: max-content;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/**********************
* table styling 
************************/

table {
  border-collapse: collapse;
}

th, td {
  border: 1px solid black;
  padding: 5px;
}









