* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  *:focus {
    outline: none;
  }
  body {
      background-color: #f7fafc; /* bg-gray-100 */
      font-family: 'Roboto', sans-serif; /* font-roboto */
  }
  nav {
    background: #222222cc;
    height: 5em;
    width: 60%;
    margin: 2em 20%;
    position: fixed;
    left: 0;
    bottom: 0;
    border-radius: .5em;
    padding: .5em 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav ul {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    gap: .6em;
    background: #3e3e3e;
    padding: .5em 2em;
    height: 100%;
  }
  nav .logo {
    color: #fff;
    padding: 0 1em;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav ul li a {
    color: #dedede;
    text-decoration: none;
    color: #f0f0f0;
    border: 1px solid #666;
    border-radius: .4em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 1em;
  }
  .potd {
    width: 6em;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border-radius: .4em;
    text-decoration: none;
    background: #fff;
    font-size: .8em;
  }
  .component-carousel {
    overflow: scroll;
    width: 60%;
    padding: 1em 0;
  }
  .component-carousel::-webkit-scrollbar {
    display: none;
  }
  .inner {
    white-space: nowrap;
  }
  .component {
    height: 3em;
    border-radius: .4em;
    border: 1px solid #555;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 1em;
    font-size: .9em;
    cursor: pointer;
  }
  .component[data-selected="true"] {
    background: #444;
    color: #dedede;
  }
  .create-post {
    height: 100vh;
    width: 100vw;
    /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  }
  .post-con {
    min-height: 14em;
    border-radius: 1em;
    border: 1px solid #444;
    background: #fff;
    padding: .5em 1em;
    width: 60%;
  }
  .post-con span.menu {
    display: flex;
    height: 3em;
    align-items: center;
    gap: 1em;
    color: #444;
  }
  .post-con span.menu button {
   color: #444; 
  }
  #stop-post {
      align-self: end;
      background: #444;
      color: #dedede;
      justify-self: end;
      margin-left: auto;
      height: 3em;
      width: 10em;
      border-radius: 9999px;
  }
  #publish-post {
      background: #444;
      color: #dedede;
      height: 3em;
      width: 10em;
      border-radius: 9999px;
  }
  #post-text {
    height: 10em;
    resize: none;
    width: 100%;
    border: none;
    padding: 1em;
    font-size: 1.1em;
  }
  #file-name {
    font-size: .9em;
  }
  textarea::placeholder {
    color: #444;
    font-weight: bold;
    
  }
  button {
    background: transparent;
    border: none;
  }
  .container {
      max-width: 1200px; /* mx-auto */
      margin: 0 auto; 
      padding: 0 16px; /* px-4 */
  }
  
  .flex-container {
      display: flex;
      flex-wrap: wrap;
      margin: -16px; /* -mx-4 */
      padding: 4em 0;
  }
  
  .main-content {
      flex: 0 0 60%; /* md:w-2/3 */
      padding: 0 16px; /* px-4 */
  }
  
  .sidebar {
      flex: 0 0 33.333333%; /* md:w-1/3 */
      padding: 0 16px; /* px-4 */
  }
  
  .post-card, .sidebar-card {
      background-color: #ffffff; /* bg-white */
      padding: 16px; /* p-4 */
      border-radius: 8px; /* rounded-lg */
      border: 1px solid #e2e8f0; /* border */
      margin-bottom: 16px; /* mb-4 */
  }
  
  .post-title, .sidebar-title {
      font-size: 1.25rem; /* text-xl */
      font-weight: bold; /* font-bold */
      margin-bottom: 16px; /* mb-4 */
  }
  
  .post-textarea {
      width: 100%; /* w-full */
      padding: 8px; /* p-2 */
      border: 1px solid #cbd5e0; /* border */
      border-radius: 8px; /* rounded-lg */
      margin-bottom: 16px; /* mb-4 */
  }
  
  .post-button {
      background-color: #4299e1; /* bg-blue-500 */
      color: #ffffff; /* text-white */
      padding: 8px 16px; /* px-4 py-2 */
      border-radius: 8px; /* rounded-lg */
  }
  
  .post-header {
      display: flex;
      align-items: center; /* items-center */
      margin-bottom: 16px; /* mb-4 */
  }
  
  .profile-pic, .small-profile-pic {
      width: 48px; /* w-12 */
      height: 48px; /* h-12 */
      border-radius: 50%; /* rounded-full */
      margin-right: 16px; /* mr-4 */
  }
  
  .post-author {
      font-weight: bold; /* font-bold */
      color: #000000; /* text-black */
  }
  
  .post-time {
      color: #718096; /* text-gray-600 */
      font-size: 0.875rem; /* text-sm */
  }
  
  .post-content {
      margin-bottom: 16px; /* mb-4 */
      color: #333333; /* Custom color */
  }
  
  .post-image {
      width: 100%; /* w-full */
      border-radius: 8px; /* rounded-lg */
      margin-bottom: 16px; /* mb-4 */
  }
  
  .post-actions {
      display: flex;
      justify-content: flex-end; /* justify-end */
      gap: 16px; /* space-x-4 */
      align-items: center; /* items-center */
  }
  
  .action-button {
      color: #718096; /* text-gray-600 */
      display: flex;
      align-items: center; /* flex items-center */
      gap: .4em;
  }
  
  .action-button:hover {
      color: #4299e1; /* hover:text-blue-500 */
  }
  
  .project-info {
      display: flex;
      justify-content: space-between; /* justify-between */
      align-items: center; /* items-center */
      border: 1px solid #cbd5e0; /* border */
      border-radius: .8em; /* rounded-full */
      padding: 16px; /* p-4 */
      margin-bottom: 1em;
      text-decoration: none;
      color: #333;
  }
  
  .project-name {
      color: #000000; /* text-black */
  }
  
  .comment-count {
      color: #718096; /* text-gray-600 */
  }
  
  .commenters-list, .people-list {
      list-style-type: none; /* Remove bullet points */
      padding: 0; /* Remove padding */
  }
  
  .commenter-item, .person-item {
      display: flex;
      justify-content: space-between; /* justify-between */
      align-items: center; /* items-center */
      margin-bottom: 8px; /* mb-2 */
  }
  
  .commenter-info, .person-info {
      display: flex;
      align-items: center; /* items-center */
  }
  
  .add-button {
      color: #718096; /* text-gray-600 */
  }
  
  .add-button:hover {
      color: #4299e1; /* hover:text-blue-500 */
  }