/* CSS for Travel Management Web Pages */
.travel-package-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.travel-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.travel-package-image {
    height: 200px;
    overflow: hidden;
}

.travel-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-package-content {
    padding: 20px;
}

.travel-package-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.travel-package-price {
    font-size: 1.2rem;
    color: #4d94ff;
    font-weight: bold;
}

.travel-package-duration {
    color: #666;
    margin-bottom: 15px;
}

.travel-package-description {
    color: #333;
    margin-bottom: 20px;
}

.booking-form {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.booking-form h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #4d94ff;
}

.itinerary-day {
    position: relative;
    margin-bottom: 30px;
}

.itinerary-day:before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4d94ff;
    border: 2px solid #fff;
}