.bus-booking-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    padding: 20px;
    margin: 0 -20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border:1px solid #999 ;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

input[type="text"], 
input[type="tel"], 
input[type="datetime-local"],
textarea, 
select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

input[type="text"]:focus, 
input[type="tel"]:focus, 
input[type="datetime-local"]:focus,
textarea:focus, 
select:focus {
    border-color: #4CAF50;
}

textarea {
    resize: vertical;
    min-height: 80px;
    border-radius: 15px;
}

.search-container {
    position: relative;
}

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

.search-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.search-item:hover {
    background-color: #f8f9fa;
}

.search-item:last-child {
    border-bottom: none;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.calculate-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.calculate-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.result-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    border: 2px solid #e0e0e0;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.route-info {
    margin-bottom: 20px;
}

.route-direction {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.route-same-direction {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.route-different-direction {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.total-cost {
    font-size: 2rem;
    font-weight: 700;
    color: #4facfe;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breakdown {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breakdown h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span:first-child {
    color: #666;
    
}

.breakdown-item span:last-child {
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.notes {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.notes h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.notes ul {
    margin: 0;
    padding-left: 20px;
}

.notes li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.whatsapp-btn {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.search-placeholder {
    color: #007bff;
    font-style: italic;
}

/* WordPress specific adjustments */
	.bus-booking-container {
	    margin: 20px 0;
	    padding: 20px;
	    background: none; /* Removed gradient background */
	    border-radius: 15px;
	}

/* Responsive design */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 20px;
        margin: 10px;
    }
    
    .total-cost {
        font-size: 1.5rem;
    }
    
    .result-title {
        font-size: 1.3rem;
    }
    
    .bus-booking-container {
        margin: 10px -10px;
        padding: 15px;
    }
}

