/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes at least 100% of the viewport height */
}

/* Header styles */
header {
    background-color: blue;
    color: white;
    padding: 15px 0;
    text-align: center;
}

/* Main content styles */
main {
    flex: 1; /* This allows the main content to grow and fill the available space */
    padding: 20px;
}

/* Itinerary section */
h2 {
    color: #333;
}

/* Plan card styles */
.plan {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan h3 {
    margin: 0;
    color: black;
}

.plan .moving {
    color: red;
}

.plan p {
    margin: 5px 0;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}
