
/* <p class="instruction-text">Select a topic heading to view its detailed content</p> */
.instruction-text {
    text-align: center;
    margin: 2px 0;
    color: #333;
    font-size: 1.1em;
}

/*Bold og underline on heading h3*/
h3 {
    font-weight: bold;
    text-decoration: underline;
}


/*Setup of lists in the sections*/
ul, ol {
    padding-left: 40px;
}

li {
    margin-left: 24px;
    line-height: 2;
    padding-right: 20px;  /* Adds some space on the right */
}




.dropdown-content {
    display: none;
    padding: 15px;
    border-left: 2px solid #e0e0e0;
    margin-left: 15px;
}

.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropdown-trigger:hover {
    background-color: #e9e9e9;
}

/* Arrow styling */
.dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    margin-right: 8px;
}

/* Rotate arrow when active */
.dropdown-trigger.active::after {
    transform: rotate(45deg);
}

.dropdown-content.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}