body {
    margin: auto;
    font-family: Arial, sans-serif;
    margin: 20px;
    /* display: flex; */
    justify-content: center;
}

header {
    /* background-color: #333; */
    color: rgb(0, 0, 0);
    padding: 15px;
    text-align: center;
}

footer {
    margin: 10px;
}



.container {
    /* display: flex; */
    margin: auto;
    padding: auto;
    justify-content: center;

    width: 100%;
    max-width: 1000px;
}

.inputs, .buttons, .output {
    margin-bottom: 20px;
    border: 2px solid #000; /* Add 2px border to each section */
    padding: 10px; /* Adds padding inside the bordered divs */
    border-radius: 4px; /* Optional: Adds rounded corners */
}

.inputs {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of input fields */
    gap: 20px; /* Adds space between input boxes */
}

.input-box {
    display: flex;
    flex-direction: column; /* Stack label and input vertically */
    gap: 5px; /* Space between label and input */
    flex: 1; /* Allows input boxes to grow equally */
}

.inputs label, .inputs input {
    margin: 0;
}

.inputs label {
    font-weight: bold; /* Makes label text bold */
}

.inputs input {
    padding: 8px;
    border: 2px solid #14f7d1; /* Light border for input fields */
    border-radius: 4px; /* Optional: Adds rounded corners to inputs */
    /* max-width: 200%; */
}

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Adds space between buttons */
}

.buttons button {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #000; /* Add 2px border to buttons */
    border-radius: 4px; /* Optional: Adds rounded corners to buttons */
}

.output {
    border: 2px solid #000; /* Add 2px border to output area */
    padding: 10px;
    border-radius: 4px; /* Optional: Adds rounded corners to output area */
}

.output textarea {
    width: 100%;
    height: 200px;
    border: 2px solid #1ea5bd; /* Add 2px border to textarea */
    border-radius: 4px; /* Optional: Adds rounded corners to textarea */
}

.manage-places {
    border: 2px solid #000; /* Add border to manage places section */
    padding: 10px;
    border-radius: 4px; /* Optional: Adds rounded corners */
}

.manage-places .input-box {
    margin-bottom: 10px;
}

.manage-places ul {
    list-style-type: none;
    padding: 0;
}

.manage-places li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
    padding: 5px;
    border: 1px solid #ccc; /* Border for each place in the list */
    border-radius: 4px; /* Optional: Rounded corners */
}

.manage-places li button {
    margin-left: 10px;
    cursor: pointer;
}




/* width */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-button {
    width: auto;
}

/* Track */
::-webkit-scrollbar-track {
    padding: 10px;
    box-shadow: inset 0 0 5px grey;
    border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(221, 50, 255);
    border-radius: 5px;
}

.topnav {
    margin: 10px;
    border-radius: 10px;
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #04AA6D;
    color: white;
}

.about {
    border: 2px solid black;
    padding: 20px;
    border-radius: 25px;
    margin: auto;
    max-width: 80%;
}

.contact {
    border: 2px solid black;
    padding: 20px;
    border-radius: 25px;
    margin: auto;
    max-width: 80%;

}