.btn-start {
	background-color: #4CAF50;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn-stop {
	background-color: #f44336;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn-disabled {
	background-color: #6e7881;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: not-allowed;
	opacity: 0.7;
}

.trip-card {
	margin-bottom: 20px;
	padding: 15px;
}

.trip-details {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
}

#trip-info-data {
	display: block !important;
}

/* In public/css/trips.css */
.driver-search-container {
	position: relative;
	width: 100%;
}

.search-results-container {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 300px;
	overflow-y: auto;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	z-index: 1000;
}

.driver-result-item {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.driver-result-item:hover {
	background-color: #f5f5f5;
}

.driver-result-item.unavailable {
	opacity: 0.6;
	background-color: #ffebee;
	cursor: not-allowed;
}

.driver-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5px;
}

.driver-info-label {
	font-weight: bold;
	color: #666;
}

.btn-payment {
	background-color: #FFB74D;
	color: #333232;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.btn-payment:hover {
	background-color: #FFA726;
}

.btn-payment.paid {
	background-color: #4CAF50 !important;
	opacity: 1;
}

.btn-payment:disabled {
	opacity: 0.9;
	cursor: not-allowed;
}