/* views/css/front_search.css */
.tecdoc-search-container {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 20px 0;
    padding: 15px;
    font-family: 'Open Sans', sans-serif;
}

.tecdoc-header {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tec-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap; /* Pour le mobile */
}

.tec-col {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.tec-col-btn {
    width: auto;
}

.step-number {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #f39c12; /* Orange AutoDoc */
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.tec-select {
    width: 100%;
    height: 45px;
    padding-left: 35px; /* Place pour le numéro */
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    font-size: 14px;
}

.tec-btn {
    height: 45px;
    padding: 0 30px;
    background: #0072ce; /* Bleu AutoDoc */
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.tec-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.tec-btn:hover:not(:disabled) {
    background: #005bb5;
}