#wheelhub-registration-number {
    width: 200px;
    padding: 6px 16px;
    margin-right: 0px;
    min-height: 37px;
    border-radius: 4px;
    background: #ffffff !important;
    border: #fff;
}
#wheelhub-search-button {
    padding: 5px 10px;
    min-height: 37px;
    background: #000;
    margin-left: -5px;
    width: 120px;
    border: #000;
    letter-spacing: 1px;
}
#wheelhub-registration-number:focus-visible {
    outline: none;
}

#wheelhub-search-button {
    padding: 5px 10px;
}

#wheelhub-search-results {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wheelhub-vehicle-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.wheelhub-vehicle-search input,
.wheelhub-vehicle-search select {
    text-align: center;
    margin-bottom: 20px;
    margin: 5px 0;
    padding: 8px;
    border-radius: 4px;
    width: 200px;
    font-size: 14px;
}

.wheelhub-vehicle-search input {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500; 
}

.result-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.result-button:hover {
    background-color: #005f8d;
}

.result-button:active {
    background-color: #003f66;
}

/* Spinning loader for wheelhub */
#wheelhub-loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #0073aa; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto; /* Center the loader */
    display: none; /* Initially hidden */
}

/* Keyframes for spinning animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#wheelhub-search-results p {
    color: #d9534f; /* Bootstrap danger red */
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
}
