.dbpjh-accordion .dbpjh-accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
	border-radius: 0.25em;
}

.dbpjh-accordion .dbpjh-accordion-header {
    font-weight: bold;
}

.dbpjh-accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
	color: #ffffff;
	background-color: #4c1920;
    width: 24px;
    height: 24px;
    border: 0px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s;
    content: "+";
}

.dbpjh-accordion-icon::before {
    content: "+";
}

.dbpjh-accordion-header.active .dbpjh-accordion-icon::before {
    content: "-";
}

.dbpjh-accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
}

.dbpjh-accordion-content p {
	margin: 10px;
}

.dbpjh-accordion .dbpjh-accordion-body ul {
    list-style-type: none;
    padding: 0;
}

#dbpjh-course-results {
	margin-top: 20px;
}

table.dbpjh-accordion-course-info {
	width: auto;
    border-collapse: collapse;
	margin: 0px 10px;
}

.dbpjh-accordion-extra-info-container {
	display: flex;
    flex-wrap: nowrap;
	max-width: 600px;
	margin: 10px;
	gap: 10px;
}
.dbpjh-extra-info-credits,
.dbpjh-extra-info-program,
.dbpjh-extra-info-format {
	flex: 1;
	background-color: #efefef;
}
.dbpjh-extra-info-top {
	color: #ffffff;
	background-color: #002753;
}
.dbpjh-extra-info-top,
.dbpjh-extra-info-bottom {
	padding: 10px;
}

/* Parent container to hold sidebar and accordion */
.dbpjh-course-db-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px; /* Space between sidebar and accordion */
	align-items: flex-start;
}

/* Sidebar styling */
.dbpjh-course-db-filters {
    flex: 1; /* Sidebar takes 1 part of the space */
    max-width: 300px;
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.dbpjh-filter-section h5,
form#dbpjh-filter-form button {
	margin-top: 20px;
}

/* Accordion styling */
.dbpjh-course-db-accordion {
    flex: 3; /* Accordion takes 3 parts of the space */
    /* border: 1px solid #ddd; */
    background-color: #ffffff;
	padding: 0px;
    border-radius: 5px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* Remove deprecated float styles */
.dbpjh-course-filters, .dbpjh-course-accordion {
    float: none;
    width: auto;
}

/* Search Bar */
.dbpjh-search-container {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
}
#dbpjh-course-search {
	flex: 5;
}
#dbpjh-search-btn {
	font-family: Antonio, sans-serif;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 400;
	background-color: #002753;
	cursor: pointer;
	border: 0px;
	border-radius: 3px;
	flex: 1;
}
#dbpjh-search-btn:hover {
	opacity: .85;
}