body {
    margin: 0;
   /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    /* Use coinbase.com font    */
    font-family: "Open Sans", sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 350px;
    background-color: #f8f8f8;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    border-right: 1px solid #ddd;
}

.sidebar h2 {
    color: #333;
}

#jobList {
    list-style: none;
    padding: 0;
}

#searchInput {
    width: calc(100% - 22px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Add styles for the category filter */
label[for="categoryFilter"] {
    display: block;
    margin-top: 10px;
}

#categoryFilter {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Add styles for the distance filter */
label[for="distanceFilter"] {
    display: block;
    margin-top: 10px;
}

#distanceFilter {
    width: calc(100% - 22px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

#distanceSlider {
    width: 100%; /* Set the width to 100% of its container */
    margin-top: 10px; /* Add margin for spacing */
}

#distanceValue {
    display: block;
    margin-top: 5px;
}

/* Update styles for the job list */
#jobList li {
    margin-bottom: 15px;
    cursor: pointer;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

#jobList li:hover {
    background-color: #f0f0f0;
}

.map-container {
    /* make the map fill its container and relative to the other elements*/
    position: relative;
    flex: 1;

}

#map {

    width: 100%;
    height: 91.5%;
}

.price-tag {
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    width: fit-content;
}

#jobDetailsSidebar {
    display: none;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: auto;
    width: 350px;
    border-left: 1px solid #ddd;
    position: relative;

}







#jobDetailsSidebar #jobUsername::before {
    content: '\1F464 '; /* Person emoji */
    margin-right: 3px; /* Add spacing */
}

#jobDetailsSidebar #jobDatePosted::before {
    content: '\1F4C5 '; /* Calendar emoji */
    margin-right: 3px; /* Add spacing */
}

#jobDetailsSidebar h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8em;
}

#jobDetailsSidebar p {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.assigned {

    text-transform: uppercase;
    white-space: nowrap;
    line-height: 15px;
    padding: 3px 12px;
    display: inline-block;
    background-color: rgba(182, 187, 177, 0.39);
    border-radius: 24px;
}
.open {
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 15px;
    padding: 3px 12px;
    background-color: rgb(163, 227, 151);
    display: block;
    border-radius: 24px;
    display: inline-block;
}

.completed {

    text-transform: uppercase;
    white-space: nowrap;
    line-height: 15px;
    padding: 3px 12px;
    display: inline-block;
    background-color: rgba(182, 187, 177, 0.39);
    border-radius: 24px;
}

#jobDetailsSidebar p.status {
    font-size: 12px;
}



.roundbutton {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;

}

.roundbutton:hover {
    background-color: #45a049;
}

#offerJobBtn {
    margin-top: 20px;
    font-size: 17px;
    background-color: transparent;
    color: #000000;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid #000000;
}

#closeJobDetailsBtn {
    background-color: #e74c3c; !important/* Red color */
    color: red;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

#closeJobDetailsBtn:hover {
    background-color: #c0392b; !important/* Darker red on hover */
}


.main-navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff; /* Clean white background color */
    color: #000000; /* Black text color */
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.site-name {
    font-size: 30px; /* Adjust the font size as needed */
    font-weight: bold;
    margin-right: auto; /* Push the site name to the left */
}

#site-logo {
max-height: 60px;

}

#profile-icon {
    max-height: 60px;
    margin-right: 10px;
    padding-left: 10px;

}

.navbar-section-middle {
    display: none;

}

.navbar-section {
    display: flex;

}




.nav-link {
    text-decoration: none;
    color: #000000; /* Black text color */

    margin-right: 20px;
    font-size: 16px;
}

.nav-link:hover {
    text-decoration: underline;
}

.navbar-section-profile
{
margin: 5px;
}



.search-bar {
    display: none;
    background-color: #ffffff; /* Grey background for the search bar */
    padding: 15px; /* Increased padding for better visibility */
    border-top: 1px solid #ddd; /* Grey border on top */
    border-bottom: 1px solid #ddd; /* Grey border on bottom */

}

.search-input {
    padding: 10px; /* Adjust padding for the search input */
    width: 300px; /* Increased width for a larger search input */
    font-size: 16px; /* Adjust font size for better visibility */
    border: none; /* Remove border for a cleaner look */
    border-radius: 5px; /* Add border-radius for rounded corners */
}

.category-select,
.location-select,
.price-input,
.filter-select,
.sort-select {
    /* Adjust styles for filter elements as needed */
    margin-top: 10px;
    padding: 8px;
    font-size: 14px;
    border-radius: 5px;
}

.search-button {
    padding: 10px 20px; /* Adjust padding for a larger search button */
    font-size: 16px; /* Adjust font size for better visibility */
    background-color: #4CAF50; /* Green color for the search button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-button:hover {
    background-color: #45a049; /* Darker shade on hover */
}

#signupButton,
#postTaskButton
{
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Added border-color transition */
    border: 2px solid #000000; /* Added border styling */
    background-color: transparent; /* Removed background color */
    color: #000000; /* Text color */
}

#signupButton:hover,
#postTaskButton:hover {
    background-color: transparent; /* Removed background color on hover */
    border-color: #45a049; /* Border color on hover */
    color: #45a049; /* Text color on hover */
}



.default-marker {
    color: #3498db;
}

/* Selected marker style */
.selected-marker {
    color: #e74c3c;
}

#jobDescription {
    font-size: large;
}

#site-text {
    font-size: 19px;
    margin-top: 0;
    color: #333;
    text-align: center;
}

#categoryFilter{
    display: none;
}
