/* Styles pour le générateur de panneau */

/* Mise en page des champs sur une ligne */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.form-row > .form-group {
    padding-right: 10px;
    padding-left: 10px;
    flex: 1;
}

/* Sélecteur de logo */
.logo-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.logo-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    min-width: 80px;
    transition: all 0.2s ease;
}

.logo-option i {
    font-size: 24px;
    margin-bottom: 5px;
}

.logo-option.selected {
    background-color: #e3f2fd;
    border-color: #2196f3;
    color: #0d6efd;
}

.logo-option:hover:not(.selected) {
    background-color: #f8f9fa;
}

/* Style pour la recherche de clients */
.input-with-dropdown {
    position: relative;
}

.dropdown-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    display: none;
}

.customer-result {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.customer-result:hover {
    background-color: #f8f9fa;
}

.no-results {
    padding: 10px;
    color: #6c757d;
    text-align: center;
}
