.ig-feed{
    .ig-dashboard-scroll{
        display: flex;
        flex-flow: column nowrap;
        gap: 1rem;
        overflow: hidden;
        margin-top: 1rem;
        overflow-y: hidden;
        scroll-behavior: smooth;
        overflow-y: scroll;
        scrollbar-width: none; 
        -ms-overflow-style: none;
        flex: 1;

        &::-webkit-scrollbar {
          display: none;
        } 

        .ig-suggestion {
        display: flex;           
        align-items: center; 
        justify-content: space-between;    
        gap: 10px; 
        margin: 10px 0;  

        .user-introduction{
            display: flex;
            gap: 0.8rem;

            .ig-suggestion-img {
                width: 40px;
                height: 40px;
                border-radius: 50%;
            }

            .follow-direction {
                display: flex;
                flex-direction: column; 
                justify-content: center; 
                text-align: left; 
                overflow: hidden;      
            }

            .ig-suggestion-name {
                font-weight: bold;
                margin: 0; 
                white-space: nowrap;   
                overflow: hidden;
                text-overflow: ellipsis;            
            }

            .handle {
                margin: 0;
                color: var(--stone-gray);           
                font-size: 0.75rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        }

            button {
                margin-left: auto;    
                padding: 5px 10px;
                border: none;
                background-color: var(--midnight-navy);
                color: var(--white);
                border-radius: 4px;
                cursor: pointer;

                &:hover {
                    background-color: var(--steel-slate);
                }
            }
        }  

        .ig-feed-post {
          background-color: var(--pure-white);
          border: 1px solid var(--silver-gray);
          border-radius: 10px;
          padding: 10px;
          width: 100%;
          margin: 0 auto;

          .ig-post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;

            .user{
              display: flex;
              align-items: center;
              gap: 0.2rem;

              .ig-post-profile-img {
                width: 35px;
                height: 35px;
                border-radius: 50%;
              }

              .ig-post-username{
                font-weight: bold;
              }

            }

            .update-delete{
                button {
                    margin-left: auto;    
                    padding: 5px 10px;
                    border: none;
                    background-color: var(--midnight-navy);
                    color: var(--white);
                    border-radius: 4px;
                    cursor: pointer;

                    &:hover {
                        background-color: var(--steel-slate);
                    }
                }
            }
          }

          .post-message{
            display: flex;
            gap: 0.2rem;
            margin-bottom: 0.5rem;

            >p:first-of-type{
              font-weight: bold;
            }
          }

          .ig-post-actions {
            display: flex;
            gap: 15px;
          }

          .ig-post-slider {
            position: relative;
            width: 100%;
            max-width: 500px;
            overflow: hidden;
            margin: 0.9rem auto;

            .slider-images {
              display: flex;
              transition: transform 0.4s ease;
              width: 100%;

              >img{
                width: 100%;
                flex-shrink: 0;
                object-fit: cover;
              }
            }

            .slider-btn {
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              background-color: rgba(0, 0, 0, 0.4);
              color: white;
              border: none;
              border-radius: 50%;
              width: 35px;
              height: 35px;
              cursor: pointer;
              font-size: 18px;
              display: flex;
              justify-content: center;
              align-items: center;
              z-index: 5;

              &:hover {
                background-color: rgba(0, 0, 0, 0.7);
              }
            }

            .slider-btn.prev {
              left: 10px;
            }

            .slider-btn.next {
              right: 10px;
            }
          
        }
      } 
    
    }
}