.custom-accordion-widget .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #111;
    color: #00fff0;
    padding: 12px 16px;
    border: 1px solid #00fff0;
    margin-bottom: 8px;
    border-radius: 4px;
    font-weight: bold;
}

.custom-accordion-widget .accordion-arrow {
    margin-left: 8px;
}

.custom-accordion-widget .accordion-content {
    padding: 12px 16px;
    background: #1b1b1b;
    color: #fff;
    border-left: 1px solid #00fff0;
    border-right: 1px solid #00fff0;
    border-bottom: 1px solid #00fff0;
    border-radius: 0 0 4px 4px;
}