body {
     font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    background-color: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}



#container, header {
    display: flex;
    max-width: 600px;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    border-radius: 0;
    border-left: 1px solid #e7e5e5;
    border-right: 1px solid #e7e5e5;
}

header {
    flex-direction: column;
    border-bottom: 1px solid #e7e5e5;;
}

.fjalla-one-regular {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}



header h1{
    padding-left:20px;
    font-size: 30px;
    margin-bottom: 0px;
      font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

header p, summary {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0px;
    color: gray;
}

summary { color: black;
margin-bottom:30px;
margin-top:10px; }

#sidebar {
  flex: 0 0 200px;
    padding: 20px;
    color: #000;
    border-right: 1px solid #e7e5e5;
}

#content {
    flex: 1;
    padding: 0px;
}

form {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding:20px;
    border-bottom: 1px solid #e7e5e5;
    
}

label {
    font-size: 18px;
    margin-bottom: 8px;
}

/*input {
    padding: 10px;
    padding-left: 0px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;

}*/

#inputText {
  padding: 10px;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  resize: none; /* Disable textarea resizing */
  overflow-y: hidden; /* Hide vertical scrollbar initially */
  width: 100%; /* Ensure the textarea takes up the full width of its container */
  height: auto; /* Automatically adjust height based on content */
  outline: none; /* Remove default focus outline */
  padding-left: 0px;
    font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#inputText::placeholder {
  color: black;
  opacity: 1; /* Firefox */
}

#checkboxX {box-sizing: border-box;
align-self: self-start;}

button {
    font-size: 16px;
    background-color: #1da1f2;
    color: #fff;
    border: none;
    border-radius: 50px; /* Make the border-radius large for pill shape */
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 12px 20px; /* Add 10px padding to the button */
    align-self:flex-end;
    opacity: 0.5;
}

button:hover {
    background-color: #0d8ecf;
}

#timeline {
    padding-top: 0px;
    background-color: #fff;
    margin-bottom: 20px;

}

.post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7e5e5;
}

.post:last-child {
    border-bottom: none;
}

/* Add styles for the post wrapper and timestamp */
.post-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}



.timestamp {
    color: grey;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    padding-left: 20px;
    padding-right: 10px;
}

.xshare a {
    padding-left: 10!important;
    font-size: 12px;
    text-decoration: none;
    color: #1da1f2;
}

.xshare i {margin-right:5px}

.post div {
    padding-left: 20px;
    padding-right: 20px;
}


#userSection {
    text-align: center;
    margin-bottom: 20px;
}

#profilePicture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

/* Add styles for the post counter */
#postCounter {
    margin-top: 20px;
    font-size: 16px;
}


#disclaimer {
    font-size:10px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    #container {
        flex-direction: column;
    }

    #sidebar {
        flex: 1;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        margin-bottom: 20px;
    }
}
