/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f2f4f8;
    max-width: 800px;
    margin: 0 auto;
    padding: 8px !important;
    min-height: 100vh;
    margin-bottom:0px !important;
}

.mapboxgl-ctrl-top-right {
	display:none;
}

.header-container {
	right: 0 !important;
	left: 0 !important;
	top: auto !important;
	position: fixed !important;
	max-width: 1000px !important;
	margin: 0 auto !important;
	padding: 10px 20px !important;
}

.brand-info h1 {
  letter-spacing: 0.2px !important;
}

/* === FORM === */
.form {
    width: 100%;
}

/* === SECTION 3 === */
.section3 {
    background-color: #F2F4F8;
    border-radius: 0px;
    padding: 0px;
    position: absolute;
    top: 350px;
    left: 0;
    width: 100%;
}

/* === MAP SECTION === */

.form-group {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
}

.text-box {
    width: 100%;
    padding: 12px 00px;
    font-size: 14px;
    font-weight: 450;
    color: #000;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
	border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.text-box:hover {
    opacity: 0.9;
}

#xartisDetails {
    margin-top: 5px;
}

#map {
    width: 100%;
    height: 270px;
    border-radius: 5px;
    margin-bottom: 0px;
    border: 5px solid #fff;
}

#mapSquare {
	display: none;
	padding: 5px;
    background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 6px;
}

#travelTime,
#distance {
    font-size: 13px;
    color: #333;
    margin: 5px 0;
}

/* === SHARING CAB SECTION === */
#share {
    margin-top: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #ddd;
	display: none;
	
}

.containerrr {
    width: 100%;
    background: transparent;
}



.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    font-size: 10px;
    color: #28a745;
    border: 1px solid #28a745;
    border-radius: 4px;
    padding: 4px 8px;
    white-space: nowrap;
}

/* === TICKETS === */
.ticket-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 40px;

}

.ticket:hover {
    background: #f8f9fa;
    border-color: #000080;
}

.ticket.selected {
    border: 2px solid #000080;
    background: #f0f4ff;
}

.ticket img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.ticket .time-info {
    flex: 1;
    margin: 0 15px;
}

.ticket .time-info div {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.ticket .time-info span {
    font-size: 11px;
    color: #666;
    font-weight: normal;
}

.ticket .price {
    text-align: right;
    flex-shrink: 0;
    min-width: 60px;
}

.ticket .price div {
    font-size: 16px;
    font-weight: 700;
    color: #000080;
    margin-bottom: 2px;
}

.ticket .price span {
    font-size: 10px;
    color: #666;
    font-weight: normal;
}

/* === PRIVATE CATEGORY === */
#privateCategory {
    margin-top: 5px;
    background-color: #fff;
    border-radius: 3px;
	padding: 7px 15px 22px 15px;
    border: 0px solid #ddd;
	margin-bottom: 150px;
}

.private-category .header {
    border-bottom: none;
    padding-bottom: 5px;
    margin-bottom: 0px;
}

.features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 7px;
}

.feature {
    font-size: 10px;
    font-weight: 600;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 6px 10px;
    border-radius: 3px;
    background-color: #fff;
}

.feature.green {
    border-color: #28a745;
    color: #28a745;
}

.cancellation {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cancellation img {
    width: 18px;
    height: 18px;
}

.cancellation p {
    font-size: 11px;
    color: #333;
    margin: 0;
    font-weight: normal;
}

/* === VEHICLE COLUMNS === */
.column {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2f4f8;
	position: relative;
    border-radius: 3px;
    padding: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s;
	min-height: 50px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
   
}

.column:hover {
    border-color: #000080;
    background: #f8f9fa;
}

.column.selected {
    border: 2px solid #000080;
    background: #f0f4ff;
}

.column img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.column .time-info {
    flex: 1;
    margin: 0 15px;
}

.column .time-info div {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.column .time-info span {
    font-size: 11px;
    color: #666;
    font-weight: normal;
}

#fare1,
#fare2,
#fare3,
#fare5 {
    font-size: 13px;
    font-weight: 600 !important;
    color: #000;
    min-width: 60px;
    text-align: right;
	position: absolute;
	right: 10px;
	top: 5px;
}


    /* Fixed buttons container */
    .fixed-buttons {
        position: fixed;
        bottom: 0px;
        width: 100%;
		max-width: 800px;
        z-index: 1000;
        display: flex;
        gap: 10px;
        background: #fff;
    	border-top: 1px solid #ddd;
        padding: 10px 0px 10px 0px;
    }

/* === BUTTONS === */
#confirmButton {
    width: 50%;
    font-size: 13px;
    font-weight: 550;
    color: #fff;
    background-color: #000;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 5px;
    height: 45px;
}

#confirmButton:hover {
    opacity: 0.9;
}

	#submit-Whatsapp {
		width: 50%;
		font-size: 13px;
		font-weight: 550;
		color: #fff;
		background-color: #25D366;
		border: none;
		cursor: pointer;
		transition: opacity 0.3s;
		border-radius: 5px;
		height: 45px;
	}



/* === RESERVATION DETAILS === */
#reservationDetails {
    margin-top: 15px;
    padding: 12px;
    background-color: #fff;
    border-radius: 6px;
}

#reservationDetails p {
    font-size: 13px;
    color: #333;
    margin: 5px 0;
    font-weight: normal;
}

#reservationDetails strong {
    font-weight: 600;
}

/* === UTILITY === */
.hidden {
    display: none !important;
}


    /* Mobile responsive */
    @media (max-width: 768px) {
        .fixed-buttons {
            bottom: 0px;
            right: 0px;
            left: 0px;
            gap: 8px;
        }        
    }

/* === RESPONSIVE === */
@media (max-width: 480px) {
body {
    background-color: #fff;
}
	
 .header-container {
    height: 55px !important;
    border-radius: 0px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 0px !important;
  }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
.form-group {
    position: absolute;
    top: 41px;
    left: 0;
    width: 100%;
}
    .tags {
        width: 100%;
    }
    
    .ticket,
    .column {
        padding: 5px;
    }
    
    .ticket img,
    .column img {
        width: 50px;
        height: 35px;
    }
        .fixed-buttons {
            bottom: 0px;
        	padding: 5px;
        }
#privateCategory {
	margin-bottom: 150px;
}
/* === SECTION 3 === */
.section3 {
    background-color: #F2F4F8;
    border-radius: 0px;
    padding: 0px;
    position: absolute;
    top: 311px;
    left: 0;
    width: 100%;
}

}