.back-button{
    margin-top: 10px;
}

.box.registration-search {
    /*background-color: #7C1E33;*/
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    /*color: #fff;*/
    font-family: Arial, sans-serif;
 }
 
 .rago-plate h2 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
 }
 .vehicle-details-search h2 {
    background-color: #7C1E33;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px;
    color: #f9f9f9;
 }
 .reg-search-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;gap:15px;
 }
 
 .reg-search-box,
 .state-search-box {
    width: 45%;
 }
 
 .reg-search-box label,
 .state-search-box label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
    text-align: left; font-style: italic;
 }
 .reg-search-box label:first-letter, .state-search-box label:first-letter {
    font-size: 34px;
 }
 .rego-input {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    font-size: 36px;
    font-weight: bold;
    color: #000;     border: 3px solid #848484; 
 }
 .reg-search-box-inner { border: 1px solid #dcdcdc;padding:5px;    border-radius: 10px;}
 .rego-input .rego-label {
    display: inline-block;
    /* background-color: #000; */
    color: #000;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    writing-mode: vertical-rl; /* Makes the text vertical */
    text-orientation: upright; /* Keeps the text upright */
 }
 
 .rego-input input.large-input {
    border: none;
    font-size: 50px;
    font-weight: bold;
    width: 100%;
    height: 90px;
    color: #000;
    letter-spacing: 5px;
    text-align: center;    text-transform: uppercase;
 }
 .rego-input input.large-input:focus {
    box-shadow: none;
    outline: 0;
 }
 .state-search-box select.select2 {
    text-align: center;
    width: 100%;
    font-size: 30px;
    border-radius: 10px;
    height: 75px;
    border: none;
    background-color: #fff;
    color: #000; border:1px solid #848484;
    -webkit-appearance: none !important; /* Hide default arrow in Chrome and Safari */
    -moz-appearance: none !important; /* Hide default arrow in Firefox */
    appearance: none !important; /* Hide default arrow in modern browsers */
 }
 .state-search-box select.select2 option {
    font-size: 14px; /* Smaller font size for options */
    padding: 5px 10px;
 }
 .vehicle-options {
     padding-top: 20px;
 }
 .vehicle-option {
    width: 100%;
    margin: auto;
    padding: 10px;
    background-color: #008000;
    color: white;
    font-size: 23px;
    margin-top: 10px;
 }
 .vehicle-title {
    font-size: 22px;
    height: 50px;
 }
 /* .rago-plate .search-by-model {
    font-size: 14px;
    margin-top: 10px;
    color: #ccc;
    text-transform: uppercase;
    background-color: #7c1e3200;
    width: 100%;
 }
 .rago-plate .search-by-model:hover {
    font-size: 18px;
    color: #006bb4;
 } */
 .search-by-model {
    font-size: 14px;
    margin-top: 10px;
    color: #ccc;
    border:none;
    text-transform: uppercase;
    background-color: #7c1e3200;
    width: 100%;
 }
 .search-by-model:hover {
    font-size: 18px;
    color: #006bb4;
    border: none;
    text-transform: uppercase;
    background-color: #7c1e3200;
 }
    .vehicle-details-search {
        border: 1px solid #ccc;
        padding: 20px;
        border-radius: 8px;
        background-color: #f9f9f9;
        width: 48%;
        box-sizing: border-box;
        margin: auto;
    }
    .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 
 .loading-overlay::before {
    content: '';
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
 }
 button#findButton {
    background-color: #008000;
        color: #fff;;
        padding: 10px;
        border: none;
        border-radius: 10px;
        width: 10%;
        font-size: 34px;
        cursor: pointer;
        margin-top: 50px;
        height: 50px;    font-style: italic;
 }
 button#findButton:hover {
     background-color: #a00;
 }
 button#findButtonbymodel {
     background-color: #008000;
     color: white;
        padding: 10px;
        border: none;
        border-radius: 4px;
        width: 100%;
        font-size: 14px;
        cursor: pointer;
        margin-top: 10px;
 }
 button#findButtonbymodel:hover {
     background-color: #a00;
 }
 /* .vehicle-details-search .search-by-model {
     font-size: 14px;
     margin-top: 10px;
     color: #ccc;
     text-transform: uppercase;
     background-color: #7c1e3200;
     width: 100%;
 }
 .vehicle-details-search .search-by-model:hover{
     font-size: 18px;
     border: none;
     color: #006bb4;
 } */
 /* Safari */
 @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
 }
 
 @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
 }
 @media (max-width:1360px) {
 .rago-plate button {width: 15%;}  
 }
 @media (max-width:991px) {
 button#findButton { width:100%}
 .reg-search-container { flex-wrap: wrap;}
 .reg-search-box, .state-search-box { width: 100%;}
 .rago-plate button { margin-top: 10px; width: 100%;height: 70px;}
 .vehicle-details-search { width: 100%;}
 }
 .activevhical{background-color: #4e534e;}