/* Generator Prompturi AI SEO - seotoolpro.ro */

.aip-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

.aip-form-group {
    margin-bottom: 22px;
}

.aip-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 15px;
}

.aip-form-group label i {
    color: #7c3aed;
    margin-right: 6px;
    width: 18px;
    text-align: center;
}

.aip-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #0f172a;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: inherit;
    background: #f8fafc;
}

.aip-input:focus {
    border-color: #7c3aed;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.aip-row {
    display: flex;
    gap: 20px;
}

.aip-half {
    flex: 1;
}

.aip-btn-generate {
    width: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.aip-btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.aip-btn-generate:active {
    transform: translateY(0);
}

/* Rezultat modern */
.aip-result-box {
    margin-top: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: audSlideIn 0.5s ease-out;
}

@keyframes audSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.aip-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #1e293b;
    color: #f8fafc;
    font-weight: 600;
}

.aip-btn-copy {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    color: #f8fafc;
    font-weight: 600;
}

.aip-btn-copy:hover {
    background: rgba(255, 255, 255, 0.2);
}

.aip-btn-copy.copied {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.aip-textarea-wrapper textarea {
    width: 100%;
    height: 240px;
    border: none;
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    background: #f8fafc;
    resize: vertical;
    outline: none;
    font-family: 'Fira Code', 'Courier New', monospace;
}

.aip-notice {
    padding: 14px 20px;
    font-size: 13px;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .aip-row {
        flex-direction: column;
        gap: 0;
    }
    .aip-container {
        padding: 20px;
    }
}