
.accordion-header {
    cursor: pointer;
    /*padding: 10px;*/
    background-color: #F1F1F1; 
    /*border-bottom: 1px solid #ddd;*/
    transition: background-color 0.3s ease; 
	
	display: flex;
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Adjust this as needed */
}

.accordion-header h2 {
    /*color: #8C8C99;*/
    margin: 0; 
    transition: color 0.3s ease; 
    font-size:22px;
    /*font-weight:400;*/
	flex-grow: 1; /* Allow the title to fill the space */
}

/* If you have specific padding or spacing needs, adjust them here */
.accordion-header i {
    margin-right: 8px; /* Space between icon and text if icon is on the left */
}

.accordion-header i:last-child {
    margin-right: 0; /* No right margin for the icon if it's the last child (useful for right-aligned icons) */
    margin-left: 8px; /* Space between text and icon if icon is on the right */
}

.accordion-header.active, .accordion-header.active h2 {
    color: #FFFFFF;
}

.accordion-header:hover{
    background-color: #0093d0;
}

.accordion-header:hover h2 {
    color: #FFFFFF; 
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.accordion-content {
	width:100%;
	margin:0px;
    padding: 0px;
    border: 1px solid #ddd;
}
