#psl-parent-lookup {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.15);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
}

#psl-parent-lookup h2 {
    text-align: center;
    color: #0073aa;
    margin-bottom: 20px;
}

#psl-parent-lookup p {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

#psl-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#psl-form input[type="text"] {
    padding: 10px 15px;
    font-size: 16px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

#psl-form input[type="text"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 115, 170, 0.4);
}

#psl-form button {
    padding: 12px;
    background-color: #0073aa;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#psl-form button:hover {
    background-color: #005f8d;
}

#psl-results {
    margin-top: 25px;
    font-size: 15px;
    color: #333;
}
