/* AI Detector Hero */
.aidetector-hero {
    background-color: white;
    color: var(--dark);
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}

/* Text Input Area */
.aidetector-input {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    min-height: 200px;
    border: 1px dashed var(--light-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.aidetector-input:hover {
    border-color: var(--primary);
    background-color: rgba(67, 97, 238, 0.03);
}

.aidetector-input textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    min-height: 150px;
    resize: vertical;
    transition: all 0.2s ease;
}

.aidetector-input textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

/* Results Section */
.aidetector-results {
    width: 100%;
    display: none;
}

/* Likelihood Section */
.likelihood-section {
    text-align: center;
    padding: 1.5rem;
}

#ai-likelihood {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}

#likelihood-message {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Action Buttons */
#detect-btn {
    margin: 1rem auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .aidetector-input {
        padding: 1.5rem;
    }

    .aidetector-input textarea {
        min-height: 120px;
    }

    #ai-likelihood {
        font-size: 1.5rem;
    }

    #likelihood-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .aidetector-input {
        padding: 1rem;
    }

    .aidetector-input textarea {
        min-height: 100px;
    }

    #ai-likelihood {
        font-size: 1.25rem;
    }
}