/* Styles for AI assistant page */
.ai-tools {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.ai-output {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 1rem;
    min-height: 100px;
}

.ai-output pre {
    white-space: pre-wrap;
    font-family: inherit;
}

.usage-note {
    color: #5f6b7a;
}

.ai-provider-panel {
    display: grid;
    gap: 0.9rem;
    margin: 1.25rem 0;
    padding: 1rem;
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #fff;
}

.ai-provider-panel h2,
.ai-provider-panel p {
    margin: 0;
}

.ai-provider-panel p {
    color: #64748b;
}

.provider-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 0.75rem;
}

.provider-option {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin: 0;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
}

.provider-option input {
    width: auto;
}

.provider-option span,
.provider-option small {
    display: block;
}

.provider-option small {
    margin-top: 0.2rem;
    color: #64748b;
}

.provider-option.unavailable {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}

.provider-preference {
    display: grid;
    grid-template-columns: minmax(9rem, max-content) minmax(12rem, 20rem);
    gap: 0.75rem;
    align-items: center;
    margin: 0;
}

.provider-status {
    min-height: 1.2rem;
}
