
        details {
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 1px; /* Reduced space between sections to 1px */
            transition: background-color 0.3s; /* Smooth transition */
        }
        summary {
            background-color: #f0f0f0; /* Light gray background for the summary */
            padding: 5px;
            cursor: pointer;
            font-weight: bold;
            border-radius: 5px; /* Rounded corners for the summary */
        }
        details[open] {
            background-color: #ffffff; /* White background when opened */
        }
        details[open] summary {
            background-color: #f0f0f0; /* Keep light gray background for summary when open */
        }
        p {
            margin: 10px 0 0; /* Add some margin to the paragraph */
        }
    