body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center align content */
}

h1 {
    margin-bottom: 20px;
}

.subheading {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    filter: brightness(90%);
}

button.abuseipdb {
    background-color: #4CAF50; /* Green */
    color: white;
}

button.ipqualityscore {
    background-color: #FF5733; /* Red */
    color: white;
}

button.virustotal {
    background-color: #007BFF; /* Blue */
    color: white;
}

button.whois {
    background-color: #ffb700; /* Blue */
    color: white;
}

button.open-all {
    background-color: #CCCCCC; /* Gray */
    color: #333;
    width: 100%; /* Full width */
}


