/* 
 * This is the Style-Sheet for the church accordion web-pages.
 * Author: John Fischer III of Christians Conquering Depression in 2026
 * Updated:
 */

/* Accordion for detailed descriptions */
#accordion input {
    display: none;
}
#accordion label {
    background: #EEEEEE;
    border-radius: .25em;
    cursor: pointer;
    display: block;
    margin-bottom: .125em;
    padding: .25em 1em;
    z-index: 20;
}
#accordion label:hover {
    background: #CCCCCC;
}
#accordion input:checked + label {
    background: #CCE6FF;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    color: white;
    margin-bottom: 0;
}
#accordion article {
    background: #99CCFF;
    height:0px;
    overflow:hidden;
    z-index:10;
}
#accordion article p {
    padding: 1em;
}
#accordion input:checked ~ article {
    border-bottom-left-radius: .25em;
    border-bottom-right-radius: .25em;
    height: auto;
    margin-bottom: .125em;
}
/* End of Arrordion */