/* styles_post.css */
.main-navbar {
    border-bottom: none;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    background-color: #ffffff;
    color: #333;
}

.container {
    display: flex;
    height: 100vh;
    padding: 20px; /* Add padding to the container */
    box-sizing: border-box; /* Include padding in the width calculation */
    justify-content: space-between; /* Space between sidebar and post-form */
}


.sidebar {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    background-color: transparent;
    box-shadow: none;
    border-right: none;

}

.step-indicator {
display: flex;
flex-direction: column;
align-items: center;
width: 40px;
}

.step {
width: 30px;
height: 30px;
background-color: #ddd;
border-radius: 50%;
margin-bottom: 10px;
color: #333;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
}

.step.completed {
background-color: #4CAF50;
color: #fff;
}

.post-form {
flex: 1;
padding: 20px;
box-sizing: border-box;
position: relative;
}

.step-content {
display: none;
}



.post-form h2 {
color: #333;
}

#postTaskForm {
display: grid;
gap: 15px;
}

label {
display: block;
font-size: 18px;
/*font-weight: bold;*/
margin-bottom: 5px;
}

input,
textarea {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 5px;
box-sizing: border-box;
margin-bottom: 10px;
}

/* styles_post.css */

/* ... (previous styles) ... */

.buttons {
    display: flex;
    justify-content: flex-start; /* Align buttons to the left */
    margin-top: 20px;
}

button {
    width: auto; /* Allow buttons to adjust their width based on content */
    padding: 10px 15px; /* Adjusted padding for smaller buttons */
    font-size: 14px; /* Smaller font size */
    border-radius: 5px;
    background-color: transparent; /* No background color */
    color: #333; /* Black text color */
    border: 1px solid #333; /* Black border */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin-right: 10px; /* Add margin between buttons */
}

button:last-child {
    margin-right: 0; /* Remove margin for the last button */
}

button:hover {
    background-color: #f0f0f0; /* Light grey on hover */
}

#taskName {
    width: 400px; /* Set the width to your desired size */
}

#description{
    width: 60%;
    height: 200px;
}
#location{
    width: 500px
}

#budget{
    width: 300px;
}

#username{
    width: 300px;
}
#contact{
    width: 500px;
}

#sucess_message{
    color: #2ecc71;
}
