/*
 * AI WordPress Plugin Detector
 */

.aipd-wrapper{
    width:100%;
    max-width:900px;
    margin:40px auto;
    font-family:inherit;
}

.aipd-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.aipd-title{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#111827;
}

.aipd-description{
    margin:12px 0 30px;
    color:#6b7280;
    line-height:1.6;
}

.aipd-form{
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:25px;
}

.aipd-input{
    flex:1;
    height:52px;
    padding:0 18px;
    border:1px solid #d1d5db;
    border-radius:8px;
    outline:none;
    font-size:16px;
    transition:.2s;
    background:#fff;
}

.aipd-input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

.aipd-button{
    border:none;
    cursor:pointer;
    height:52px;
    padding:0 28px;
    background:#2563eb;
    color:#fff;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    transition:.25s;
}

.aipd-button:hover{
    background:#1d4ed8;
}

.aipd-button:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.aipd-loading{
    margin-top:20px;
    padding:15px;
    border-radius:8px;
    background:#eff6ff;
    color:#1d4ed8;
    font-weight:600;
}

.aipd-results{
    margin-top:30px;
}

.aipd-section{
    margin-top:25px;
}

.aipd-section h3{
    margin:0 0 15px;
    font-size:22px;
    color:#111827;
}

.aipd-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

.aipd-table th{
    background:#f9fafb;
    padding:14px;
    text-align:left;
    border:1px solid #e5e7eb;
    font-weight:600;
}

.aipd-table td{
    padding:14px;
    border:1px solid #e5e7eb;
}

.aipd-table tr:nth-child(even){
    background:#fafafa;
}

.aipd-error{
    background:#fee2e2;
    border:1px solid #fecaca;
    color:#991b1b;
    padding:15px;
    border-radius:8px;
}

.aipd-empty{
    padding:20px;
    background:#f9fafb;
    border-radius:8px;
    text-align:center;
    color:#6b7280;
}

@media(max-width:768px){

    .aipd-form{
        flex-direction:column;
        align-items:stretch;
    }

    .aipd-button{
        width:100%;
    }

    .aipd-card{
        padding:20px;
    }

    .aipd-title{
        font-size:24px;
    }

    .aipd-table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }

}