#jadlog-wrapper {
    max-width: 640px;
    margin: 50px auto;
    padding: 35px 30px;
    background: linear-gradient(to bottom right, #ffffff, #f6f9fc);
    border: 1px solid #dce3ec;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-family: 'Segoe UI', sans-serif;
}

#jadlog-wrapper h2 {
    margin-bottom: 10px;
    font-size: 26px;
    color: #7A4D3B; /* Cor de cogumelo marrom */
    text-align: center;
    position: relative;
}

#jadlog-wrapper .descricao {
    margin-bottom: 25px;
    color: #444;
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    background: #e8f0ff;
    padding: 10px 15px;
    border-left: 5px solid #7A4D3B; /* Cor de cogumelo marrom */
    border-radius: 6px;
}

#jadlog-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

#jadlog-form input[type="text"] {
    flex: 1 1 60%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    min-width: 220px;
    transition: border 0.3s ease;
}

#jadlog-form input[type="text"]:focus {
    border-color: #7A4D3B; /* Cor de cogumelo marrom */
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 77, 59, 0.1);
}

#jadlog-form button {
    padding: 12px 20px;
    background-color: #7A4D3B; /* Cor de cogumelo marrom */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

#jadlog-form button::before {
    content: "🔍";
}

#jadlog-form button:hover {
    background-color: #5f3624; /* Tom mais escuro de marrom */
}

#jadlog-result {
    padding-top: 20px;
    color: #333;
}

#jadlog-result .section {
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
    margin-top: 20px;
    background: #fdfdfd;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

#jadlog-result h3 {
    margin: 0 0 12px;
    color: #7A4D3B; /* Cor de cogumelo marrom */
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
}

#jadlog-result ul {
    list-style: none;
    padding-left: 0;
    font-size: 15px;
}

#jadlog-result ul li {
    margin-bottom: 8px;
    padding: 10px 12px;
    background: #eef3fb;
    border-radius: 6px;
    position: relative;
}


#jadlog-result .erro {
    color: #d10000;
    font-weight: bold;
    background: #ffe0e0;
    padding: 10px 12px;
    border-radius: 6px;
    border-left: 5px solid #ff0000;
    margin-top: 15px;
}
