
  .comment-container{
    position: relative;
  }
  
  
  .comment-container {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f5f5f5;
            padding: 0px 0px 3px 0px;
        }
        
        .comment-container {
            width: 80%;
            max-width: 600px;
        }
        
        .comment-container {
            width: 80%;
            height: 60px; /* Height for approximately 2 lines */
            padding: 5px;
            box-sizing: border-box;
            border: 3px solid #0066cc;
            border-radius: 8px;
            background-color: white;
            resize: none; /* Prevent resizing */
            font-size: 16px;
            outline: none;
            line-height: 1.5;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .comment-container :focus {
            border-color: #004499;
        }
  
        .text-input {
            width: 100%;
            border: none;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: #333;
            outline: none;
            padding: 10px 11px 0px 11px;
        }

        .img-input {
            position: absolute;
            right: 50%; 
            transform: translateX(-90px);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .img-input {
            width: 24px;
            height: 24px;
            background-color: #0066cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        .comment-container:hover {
                background-color: #004999;
                transform: scale(1.1);
                box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
            }
            .comment-container{
                transition: transform 0.3s ease;
            }
            
            .comment-container:hover i {
                transform: rotate(90deg);
            }
            .comment-container outer{
                padding-bottom: 5px !important;
            }
            .comment-container p:hover{
                color:#f5f5f5;
            }


        