.rever-neuro-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.rever-neuro-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rever-neuro-title {
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
    background: linear-gradient(90deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rever-neuro-input-area {
    display: flex;
    gap: 10px;
}

.rever-neuro-input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.rever-neuro-input:focus {
    border-color: #8A2BE2;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.rever-neuro-btn {
    background: #8A2BE2;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.rever-neuro-btn:hover {
    background: #7B1FA2;
}

/* Скелетон загрузки */
.rever-neuro-loader {
    margin-top: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
}

.rever-neuro-loader-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.rever-neuro-skeleton {
    height: 16px;
    background: linear-gradient(90deg, #e2e8f0 25%, #cbd5e1 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.rever-neuro-skeleton.short {
    width: 60%;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Результаты */
.rever-neuro-results {
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.rever-neuro-message {
    background: #f3e8ff;
    border-left: 4px solid #8A2BE2;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
}
