body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    background-color: #f9f9f9;
}

.whois-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.whois-section {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #f8f8f8;
}

.whois-section h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
    background-color: green;
    border-bottom: 1px solid #ddd;
    padding: 5px;
}

.whois-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.whois-table th, .whois-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.whois-table th {
    background-color: #f4f4f4;
    color: #333;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin: 5px 0;
}

button, input[type="text"] {
    display: block;
    margin: 10px auto;
    width: calc(100% - 40px);
    font-size: 16px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

button {
    background-color: green;
    color: white;
    cursor: pointer;
    border: none;
}

button:hover {
    background-color: #45a049;
}

.error {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.whois-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.whois-logo img {
    width: 300px;
    height: auto;
}

ul {
    list-style-type: none; /* Removes default bullet points */
    padding-left: 0; /* Removes left padding */
}

/* New style for available domains */
.whois-available {
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    border: 2px solid green;
    border-radius: 5px;
    background-color: #e8f5e9;
    color: green;
}

.whois-available h2 {
    font-size: 22px;
    color: green;
    margin-bottom: 10px;
}

.whois-available button {
    width: auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

.whois-available button:hover {
    background-color: #45a049;
}

.whois-actions {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.whois-actions form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.last-checked {
    font-size: 14px;
    color: #555;
}

.refresh-icon {
    cursor: pointer;
    padding: 5px;
    background-color: #007bff;
    border-radius: 50%;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.order-now-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50; /* Button background color */
    color: #fff; /* Text color */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    border-radius: 5px; /* Rounded corners */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.order-now-button:hover {
    background-color: #45a049; /* Darker background on hover */
    transform: translateY(-3px); /* Slight lift on hover */
}

.order-now-button:active {
    background-color: #3e8e41; /* Even darker background on click */
    transform: translateY(1px); /* Button press effect */
}



