.api-status-banner {
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    margin: 1rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
}

.api-status-banner p {
    margin: 0;
}

.api-status-banner.not-configured {
    background-color: rgba(255, 152, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.api-status-banner.configured {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--primary-color);
}

.api-status-banner.error {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid #d32f2f;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}
