/* Estilo moderno e minimalista para o formulário do plugin */
.seutexto-detector {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-family: "Inter", "Helvetica Neue", sans-serif;
    color: #333;
    transition: all 0.3s ease;
}

.seutexto-detector:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

.seutexto-detector input,
.seutexto-detector textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.seutexto-detector input:focus,
.seutexto-detector textarea:focus {
    border-color: #4f46e5; /* Roxo elegante */
    box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.seutexto-detector button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.seutexto-detector button:hover {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79,70,229,0.3);
}

.seutexto-detector h4 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    border-left: 4px solid #4f46e5;
    padding-left: 10px;
}

.seutexto-detector p,
.seutexto-detector li {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.seutexto-detector ul {
    list-style: disc inside;
    margin: 10px 0 0 10px;
    padding: 0;
}

#st-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #eee;
}
