.whois-container {
    max-width: 800px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.whois-search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.whois-search-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.whois-search-box button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.whois-search-box button:hover {
    background-color: #005177;
}

.whois-search-box button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.whois-card {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 4px;
}

.whois-card h3 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.whois-table {
    width: 100%;
    border-collapse: collapse;
}

.whois-table td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.whois-table td:first-child {
    width: 120px;
}

#whois-raw {
    background: #222;
    color: #eee;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.5;
    white-space: pre-wrap;
}
