
        #container { 
            width: 100%; 
            margin: auto;
            background: white; 
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
            
        }
     #comment-form   textarea {
            width: 100%; 
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ddd;
            resize: none;
            }
      #comment-form  button {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer; 
            margin-top: 5px;
            }
   
        
        
   .send {
            padding: 8px 15px;
            border: none;
            background: #007BFF;
            color: white;
            border-radius: 5px;
            cursor: pointer; 
            margin-top: 5px;
            }
        .send:hover { 
            background: #0056b3; 
            
        }
        
        
              
        .cancel {
            padding: 8px 15px;
            border: none;
            color: red;
            border-radius: 5px;
            cursor: pointer; 
            margin-top: 5px;
            background-color: transparent;
            }
        .cancel:hover { 
            background: #0056b3; 
            color: white;
            
        }
        
        
        
        
        .comment {
            border-left: 2px solid #000; 
            padding: 10px;
            margin-top: 5px; 
            background: #fff;
            border-radius: 5px; 
            
        }
        .reply-box {
            margin-left: 15px; 
            display: none;
            max-width: 300px;
            }
        .reply-btn {
            color: blue;
            cursor: pointer;
            font-size: 12px;
            margin-top: 5px;
            }
        .replies { 
            margin-left: 15px; 
            display: none;
            
        }
        .reply-user {
            font-size: 12px; 
            color: gray; 
            
        }
        
        .reply-comment{
           outline: none;
           border: none;
           border-bottom: 2px solid blue;
           height: 50px;
        }
        
        .reply-comment:focus, .reply-comment:hover{
           border-bottom: 3px solid blue;
        }
        
        .reply-comment:valid{
           border-bottom: 4px solid blue;
           border-radius: 10px;
        }
        
        
        
           .see-replies {
            color: green;
            cursor: pointer;
            font-size: 12px;
            margin-top: 5px;
        }