  #on-mind {
            
        }
        
        #on-mind .dev img {
          width: 70px; border:2px solid var(--secondary-color); height: 70px; border-radius: 50%;  
        }
        
        #on-mind .dev span {
           position: absolute; bottom: 0; right: 0; width: 20px; height: 20px; 
           background-color: #00ff00; border-radius: 50%; 
           border: 2px solid var(--secondary-color); 
        }
        
        #on-mind .dev textarea {
            border-radius:5px 17px 17px 5px; border:2px solid var(--secondary-color); 
            font-weight:bold; background-color:var(--background); margin-left: 7px;
        }
        
        #on-mind .dev {
            display: flex; align-items: center; margin-bottom: 10px;
        }
      
    
  #postContent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  color: #fff;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#postContent.show {
  display: block;
  opacity: 1;
}

body.no-scroll {
  overflow: hidden;
}

.title-image {
        color: var(--light-text);
        text-align: center;
        font-size: 19px;
        padding:5px;
        max-height:300px;
        border:1px solid var(--secondary-color);
        border-radius:7px;
        justify-content:center;
        text-overflow: ellipsis;
        white-space: normal;
}

.title-solo {
        color: var(--light-text);
        text-align: left;
        font-size: 14px;
        margin:3px auto;
        line-height:1.3rem;
        padding:5px;
        text-overflow: ellipsis;
        white-space: normal;
}


.displaySummary {
    font-size:11px;
}

/* Post Container */
.post-container {
  max-width: 500px;
  width: 98%;
  border: 1px solid var(--secondary-color);
  border-radius: 6px;
  margin: 0 auto 3px;
  background: var(--card-bg);
  overflow: hidden;
  position: relative;
}

/* Post Header */
.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 6px;
  border-bottom: 1px solid var(--secondary-color);
}

.post-time {
  font-size: 11px;
  color: var(--light-text);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.author-name {
  font-size: 12px;
  font-weight: bold;
  color: var(--light-text);
}

.username-holder {
  font-size: 10px;
  color: var(--light-text);
  margin-top: 2px;
}

/* Post Content */
.post-content {
  padding: 12px 15px;
  cursor: pointer;
}

.post-image-container {
    max-height: 400px;
    border-radius: 6px;
    margin-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    background-color: #f5f5f5;
    padding: 10px;
}

.image-scroll-container {
    display: inline-flex;
    gap: 10px;
}

.scroll-image-item {
    display: inline-block;
    height: 380px;
    position: relative;
}

.scroll-image-item img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hide scrollbar but keep functionality */
.post-image-container::-webkit-scrollbar {
    height: 8px;
}

.post-image-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.post-image-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.post-image-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Post Actions */
.post-actions {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 5px;
  border-top: 1px solid var(--secondary-color);
  position: relative;
}

.post-action {
  cursor: pointer;
  color: var(--light-text);
  font-size: 10px;
  transition: all 0.2s ease;
  padding: 5px 7px;
  background-color: var(--branding-hover, rgba(13, 210, 250, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}

.post-action:hover {
  color: var(--primary-text);
  background-color:transparent;
}

/* Reaction Popup */
.reaction-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #222222;
  border: 1px solid var(--secondary-color);
  border-radius: 24px;
  padding: 8px 15px;
  z-index: 100;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 280px;
}

.reaction-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--popup-bg) transparent transparent;
}

.reaction-emoji {
  font-size: 28px;
  margin: 0 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 5px;
  -webkit-tap-highlight-color: transparent;
}

.reaction-emoji:hover {
  transform: scale(1.3);
}

.reaction-active {
  color: var(--branding);
  position: relative;
}

.reaction-active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--branding);
  border-radius: 50%;
}

/* Share Popup */
.share-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 10px;
  background:#222222;
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  padding: 10px;
  z-index: 100;
  display: none;
  width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 15px;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--popup-bg) transparent transparent;
}

.share-option {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.share-option:hover {
  background: var(--secondary-color);
}

.share-icon {
  margin-right: 10px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* Reaction States */
.has-reaction {
  color: var(--muted-text);
}

.has-reaction.user-reaction {
  color: var(--branding);
  font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .post-container {
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .post-actions {
    justify-content: space-between;
    padding: 8px 2px;
  }
  
  
  .reaction-popup {
    min-width: 260px;
    padding: 6px 10px;
    bottom: calc(100% + 5px);
  }
  
  .reaction-emoji {
    font-size: 24px;
    margin: 0 2px;
  }
  
  .share-popup {
    right: 5px;
    width: 160px;
  }
}