/* Center the Whois Lookup Form */
.whois-lookup-form {
    text-align: center;
    margin: 20px auto;
}

/* Shorter textbox, larger text */
.whois-lookup-form input[type="text"] {
    width: 320px;         /* desktop width */
    font-size: 20px;      /* larger text */
    padding: 10px 12px;
    border: 2px solid #444;
    border-radius: 6px;
}

/* Larger button */
.whois-lookup-form input[type="submit"] {
    font-size: 18px;
    padding: 12px 24px;
    margin-top: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Hover effect */
.whois-lookup-form input[type="submit"]:hover {
    background: #555;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .whois-lookup-form input[type="text"] {
        width: 90%;
        font-size: 22px;
    }
    .whois-lookup-form input[type="submit"] {
        font-size: 20px;
    }
}

/* Stats table tweaks */
.whois-stats h3 { margin: 10px 0 8px; }
.whois-stats ul { list-style: none; padding: 0; }
.whois-stats li { margin: 4px 0; }
.whois-stats ol { margin: 6px 0 12px 20px; }
