body {
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgb(230, 177, 109);
    color: #333;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}
h2{
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}



h3 {
    color: #34495e;
    margin-bottom: 15px;
    border: solid 2px #34495e;
    text-align: center;
    height: 40px;
}


.section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-right: 10px;
}

select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.city-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fafafa;
}

.city-item ul {
    margin: 10px 0;
    padding-left: 20px;
}

.city-item li {
    margin-bottom: 5px;
}

.add-button {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-button:hover {
    background-color: #800000;
}

#itineraryList {
    padding: 0;
}

#itineraryList li {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fafafa;
}

#error-message {
    min-height: 20px;
    color: #e74c3c;
    text-align: center;
    font-weight: bold;
}