/* Style untuk seluruh halaman */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

/* Styling untuk container utama */
.container {
    margin-top: 50px;
}

/* Heading H1 */
h1 {
    font-size: 2.5rem;
    color: #343a40;
}

/* Form input dan button */
.input-group input {
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.input-group button {
    border-radius: 5px;
    background-color: #007bff;
    border: 1px solid #007bff;
    color: white;
}

.input-group button:hover {
    background-color: #0056b3;
    border: 1px solid #0056b3;
}

/* Style untuk tampilan hasil WHOIS */
.whois-result {
    white-space: pre-wrap;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Style untuk error message */
.text-danger {
    color: #dc3545;
}

/* Card style untuk form dan hasil */
.card {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card-body {
    padding: 30px;
}
