/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 11, 2024, 2:10:52 PM
    Author     : David Thornton
*/
/* Style the tab buttons */
.accordion {
  background-color: #ddd;
  color: #000000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-bottom: 2px;
  
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #333333;
  color: #FFFFFF;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 18px 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordion .list {
    padding-left: 10px;
    list-style: none;
    white-space:pre;
}