/* Accordion container */
.frontegg-accordion {
    margin-top: 1em;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
}

/* Accordion item spacing */
.accordion-item+.accordion-item {
    border-top: 1px solid #ccd0d4;
}

/* Accordion button styles */
.accordion-toggle {
    background: #f6f7f7;
    color: #23282d;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    font-size: 15px;
    border: none;
    font-weight: 600;
    outline: none;
    transition: background 0.2s ease;
}

.accordion-toggle:hover,
.accordion-toggle[aria-expanded="true"] {
    background: #e2e4e7;
}

/* Accordion panel */
.accordion-panel {
    display: none;
    padding: 16px;
    background: #fff;
}

/* Code and copy button */
code {
    font-size: 13px;
    background: #f0f0f0;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 6px;
    display: inline-block;
}

.copy-feedback {
    color: green;
    margin-left: 6px;
    font-weight: 600;
    display: none;
}

button.button {
    vertical-align: middle;
}

/* Copy success feedback */
button.button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Table alignment */
.form-table th {
    width: 220px;
}

/* Notices inside table cells */
.config-warning {
    background-color: #fff8e5;
    padding: 12px;
    border-left: 4px solid #ffba00;
}

.frontegg-error {
    color: #cc0000;
    font-size: 13px;
    margin-top: 4px;
}