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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    max-width: 500px;
    margin: 0 auto;
    padding: 5px;
}

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

/* === SECTION 3 === */
.section3 {
    background-color: #F2F4F8;
    border-radius: 8px;
    padding: 15px 10px;
}

/* === MAP SECTION === */
.form-group {


}

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

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

#xartisDetails {
    margin-top: 5px;
}

#map {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    margin-bottom: 0px;
}

#mapSquare {
	display: flex;
	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: #fff;
    border-radius: 8px;
    padding: 15px;
	display: none;
}

.containerrr {
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.header h2 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.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: 0px solid #e0e0e0;
    border-radius: 3px;
    background: #f1f1f1;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 50px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

.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: 20px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.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: #f1f1f1;
    border: 0px solid #e0e0e0;
    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.1);
}

.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: 16px;
    font-weight: 500;
    color: #000;
    min-width: 60px;
    text-align: right;
}

/* === BUTTONS === */
#confirmButton {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 0.3s;
}

#confirmButton:hover {
    opacity: 0.9;
}

/* === 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;
}

/* === RESPONSIVE === */
@media (max-width: 400px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .tags {
        width: 100%;
    }
    
    .ticket,
    .column {
        padding: 10px;
    }
    
    .ticket img,
    .column img {
        width: 50px;
        height: 35px;
    }
}