/* Center the input field */
.centered-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 0;
}

#websiteURL {
    padding: 10px 20px;
    width: 500px;
    height: 50px;
    border: 1px solid #9e9e9e;
    border-radius: 25px 0 0 25px;
    outline: none;
}

#checkButton {
    padding: 0 20px;
    height: 50px;
    border: 1px solid #9e9e9e;
    border-left: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 0 25px 25px 0;
}

#checkButton:hover {
    background-color: #0056b3;
}

/* Styling for the result table */
.result-table {
    margin-top: 20px;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 10px;
    text-align: left; /* Left align the page URLs */
    border: 1px solid #ddd;
}

table th {
    background-color: #f4f4f4;
}

table td a {
    text-decoration: none;
    color: #007bff;
}

table td a:hover {
    color: #0056b3;
}

/* Loading spinner style */
#loading-spinner {
    text-align: center;
    margin-top: 20px;
    display: none; /* Initially hidden */
    margin: 20px auto; /* Center spinner */
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

/* Result count message styling */
#result-count {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
}

/* Login button styling */
.login-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #0056b3;
}
