.twitter-post-container {
  display: flex;
  align-items: flex-start;
  width: 558px;
  background-color: black;
  color: white;
  padding: 12px 16px;
}

.twitter-profile-container {
  flex-shrink: 0;
}

.twitter-profile-container .profile-picture {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: grey;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

.twitter-input-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.twitter-input-text {
  display: flex;
}

.twitter-input-text input {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  width: 100%;
  outline: none;
  font-weight: 500;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.reply-permission-wrapper {
  width: 100%;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.reply-permission {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #1d9bf0;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 4px 8px;
  transition: background-color 0.15s;
}

.reply-permission:hover{
  border-radius: 50px;
  background-color: rgba(116, 162, 194, 0.2);
}


.icons-post-spacing{
  display: flex;
  justify-content: space-between;
  
}

.post-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.post-actions i {
  color: #1DA1F2;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.post-actions i:hover {
  background-color: rgba(29, 161, 242, 0.2);
}

.twitter-post-button{
  background-color: rgb(146, 143, 143);
  color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 50px;
  border-style: none;
  cursor: pointer;
}

.show-post{
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  border-color: gray;
  background-color: black;
  color: #1DA1F2;
  padding: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.show-post:hover{
  background-color: rgba(201, 201, 201, 0.15);
}

.twitter-feed-container {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.twitter-post {
  display: flex;
  padding: 12px 16px;
  gap: 12px;
  color: white;
  background-color: black;
  transition: background-color 0.2s;
}

.twitter-post:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.post-profile-picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1DA1F2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}

.post-username {
  font-weight: bold;
  cursor: pointer;
}

.post-username:hover {
  text-decoration: underline;
}

.post-handle {
  color: #71767B;
}

.post-text {
  font-size: 15px;
  line-height: 20px;
  margin-top: 2px;
}

.show-more-link {
  color: #1DA1F2;
  cursor: pointer;
}

.show-more-link:hover {
  text-decoration: underline;
}

.post-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  max-width: 425px;
  color: #71767B;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  cursor: pointer;
}

.stat-item i {
  font-size: 14px;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
}

.stat-item:hover i {
  color: #1DA1F2;
  background-color: rgba(29, 161, 242, 0.1);
}

.stat-item:hover .fa-comment {
  color: #1DA1F2;
}

.stat-item:hover .fa-retweet {
  color: #00BA7C;
}

.stat-item:hover .fa-heart {
  color: #F91880;
}

.stat-item:hover .fa-upload {
  color: #1DA1F2;
}

