body {
    font-family: 'Balsamiq Sans', cursive;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 15px;
}

header {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Adds space between logo and text */
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

header .date {
    margin: 5px 0 0;
    font-size: 1.1em;
    opacity: 0.9;
}

details {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid #ddd;
}

summary {
    font-weight: bold;
    font-size: 1.4em;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    border-bottom: 2px solid #eee;
}

.card-content {
    padding: 0 20px 20px 20px;
}

ul {
    list-style-type: '✔️ ';
    padding-left: 25px;
}

ul ul {
    list-style-type: '➡️ ';
}

li {
    margin-bottom: 10px;
    line-height: 1.5;
}
/* Add these styles to your style.css file */

.trip-notice {
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    padding: 8px;
    border-radius: 6px;
    margin-top: 15px;
}

#live-weather-container {
    background: #e9f5ff;
    border: 2px solid #bde0fe;
    border-radius: 12px;
    padding: 10px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.weather-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.weather-icon {
    font-size: 4em;
}

.weather-details p {
    margin: 0;
    line-height: 1.4;
}

.current-temp {
    font-size: 1.8em;
    font-weight: bold;
    color: #007bff;
}

.info {
    font-size: 0.8em;
    font-style: italic;
    color: #666;
}
.fun-fact {
    background-color: #fffbe6;
    border: 2px dashed #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px 20px;
    background: #6c757d;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Adds space between logo and text */
}
.logo {
    height: 50px; /* Adjust size as needed */
    width: auto;
}