.toggle-button:focus,
.toggle-button:focus-visible,
.toggle-button:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    ring: none !important;
}
.toggle-button {
    outline: none !important;
}
.toggle-content {
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding-top 0.5s ease-in-out, padding-bottom 0.5s ease-in-out;
}
.toggle-content.toggle-open {
    max-height: 1000px;
    opacity: 1;
}
.toggle-content.toggle-closed {
    max-height: 0;
    opacity: 0;
}

