.conducteur-block {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fafafa;
}

.conducteur-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.conducteur-actions input {
    flex: 1;
}

.conducteurs-tabs {
    display: flex;
    gap: 10px;
}

.conducteur-tab-btn {
    padding: 8px 12px;
    cursor: pointer;
}

.conducteurs-tabs button.conducteur-tab-btn {
	padding: 9px !important;
	background: white !important;
	color: black !important;
	border: 1px solid #ddd !important;
	border-bottom: none !important;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

#add-conducteur-btn {
	padding: 9px !important;
	background: #f5f5f5 !important;
	color: black !important;
	border: 1px solid #ddd !important;
	border-bottom: none !important;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.conducteurs-tabs button.conducteur-tab-btn.active {
    background: #333 !important;
    color: #fff !important;
}

.conducteurs-content {
    border: 1px solid #ddd;
    padding: 15px;
}

.conducteur-content {
    margin-top: 10px;
}

.form-section {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.conducteurs-content .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
    width: calc(50% - 5px);
}

.form-section .fields {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-group.full {
    width: 100%;
}

.conducteur-table {
    width: 100%;
    border-collapse: collapse;
}

.conducteur-table th,
.conducteur-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.conducteur-table tr {
    cursor: pointer;
}
.conducteur-table tr:hover {
    background: #f5f5f5;
}

.conducteur-header button {
	background: grey;
	border-radius: 0;
	padding: 2px 10px;
	border: none;
}

.conducteur-header button:hover {
	background: #0073aa;
}

button[data-action="remove_conducteur"] {
	background: #dc143c;
	border-radius: 0;
	padding: 4px 10px;
}


@media (max-width: 768px){
    .conducteurs-content .form-group {
        width: 100%;
    }
}