﻿body {
}
/* Add styling for the expandable section */
.expandable-section {
    border: 1px solid #ccc;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
}

.expandable-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .expandable-header h2 {
        font-size: 18px;
        margin: 0;
    }

.expandable-content {
    display: none;
    padding: 10px 0;
}

/* Styling for the expand icon */
.expand-icon {
    font-size: 24px;
    cursor: pointer;
}

   
