* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
	--tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
	color: rgb(156 163 175 / var(--tw-text-opacity));
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #2c3e50;
    color: #3498db;
    border-radius: 8px;
}

section {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
	color: rgb(156 163 175 / var(--tw-text-opacity));
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}

h2 {
	--tw-text-opacity: 1;
    margin-bottom: 15px;
    color: #3498db;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

.cardp {
	--tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity));
	padding-top: 0.5rem;
    padding-bottom: 0.5rem
	display: block;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.option-card {
    border: 2px solid;
    border-radius: 0.5rem;
	overflow: hidden;
    //padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.option-card.selected {
    border-color: #3498db;
    //background-color: #e8f4fd;
}

.option-image {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: 4px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.route-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.route-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.route-info {
    padding: 15px;
}

.route-info h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.route-info p {
    color: #666;
    font-size: 0.9em;
}