.row {
    display: flex;
}

.accordion {
    border-right: 2px solid #ddd;
    padding-right: 20px;
}

.accordion-header {
    background-color: #f1f1f1;
    color: #333;
    cursor: pointer;
    padding: 15px;
    text-align: left;
    border: none;
    outline: none;
    transition: background-color 0.2s ease;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px; /* Space between items */
}

.accordion-header:hover {
    background-color: #ddd;
}

.accordion-content {
    padding: 20px;
    background-color: white;
    border-left: 2px solid #ddd;
    display: none; /* Hidden by default */
}

.accordion-content.active {
    display: block; /* Show when active */
}
