.ai-info-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ai-info-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #a777e3, #6e8efb);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.ai-info-toggle:hover {
    background: linear-gradient(135deg, #5d7dfa, #9666e0);
}

.ai-info-messages {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.ai-info-message-box {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ai-info-message-box:last-child {
    margin-bottom: 0;
}

.ai-info-message-box a {
    color: #0366d6;
    text-decoration: none;
    margin-left: 0.5rem;
}

.ai-info-message-box a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}