/*
 * Main Stylesheet for the Spanish EU KitSite
 */

/* ------------------ Base Reset and Typography ------------------ */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

header {
   
    display: flex;
    align-items: center;
  
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
}

/* ------------------ Logo Styling ------------------ */
.logo {
    width: 300px;
    height: auto;
    margin:30px auto;

}
.model-img {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    height: auto;
}

.enter-model{
text-align:center;
text-transform: uppercase;
}

.kit_message{
    color: #585858;
    text-align: center;
}
/* ------------------ Content Styling ------------------ */
h1 {
    color: #007ACC;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 2.5em;
}

p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* ------------------ Button Styling (Call to Action) ------------------ */
button {
    background-color: #ffffff; /* Bright orange/red for contrast */
    color: rgb(13 110 253);
    border: solid 2px rgb(13 110 253); /* Changed from 'none' to solid border */
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color:rgb(13 110 253);
    color: #ffffff;
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

.model-search-results .list-group {
        width: 100% !important;
        max-width: none !important;
        border-radius: 0.375rem;
        border: 1px solid #ced4da;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        margin-top: 2px;
    }
    .model-search-results .list-group-item {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    .model-search-results .list-group-item:hover {
        background-color: #f8f9fa;
    }