/* Accordion Styles */
.accordion {
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: #f0f8ff; /* Pale blue background */
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #e6f2ff; /* Slightly darker blue */
}

.accordion-content {
    display: none;
    padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.accordion-content.active {
    display: block;
}

/* General Accordion Styles */
.domain-accordion {
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.domain-accordion-item {
    border-bottom: 1px solid #ccc;
}

.domain-accordion-item:last-child {
    border-bottom: none;
}

.domain-accordion-header {
    background-color: #2c3e50; /* Darker background for contrast */
    color: #ffffff; /* White text */
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}

.domain-accordion-header:hover {
    background-color: #34495e; /* Slightly lighter on hover */
}

.domain-accordion-header::after {
    content: '\25BC'; /* Downward arrow */
    font-size: 1rem;
    transition: transform 0.2s ease-in-out;
}

.domain-accordion-header.active::after {
    transform: rotate(180deg); /* Rotate arrow when open */
}

.domain-accordion-content {
    display: none;
    padding: 12px;
    border-left: 3px solid #2c3e50;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 5px;
}

/* Ensure list items inside the accordion are bulleted */
.domain-accordion-content ul {
    list-style-type: disc !important; /* Force disc bullets */
    margin-left: 20px !important; /* Add indentation */
    padding-left: 20px !important;
}

/* Ensure proper spacing for list items */
.domain-accordion-content ul li {
    margin-bottom: 5px !important;
}


.domain-accordion-content.active {
    display: block;
}

