
  /* Container Title */
  .comment-section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
    text-align: center;
  }

  /* Form Container */
  .comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: auto;
    padding: 30px;
    box-sizing: border-box;
    background: white;
  }

  /* User Profile */
  .profile-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
  }
  .profile-name {
    font-weight: 500;
    font-size: 1rem;
    color: #007bff;
  }

  /* Form Groups */
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .label-name,
  .label-message {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #555;
  }

  /* Inputs */
  .input-name,
  .textarea-message {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.2s;
  }
  .input-name[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
  }
  .input-name:focus,
  .textarea-message:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  }

  /* Textarea */
  .textarea-message {
    resize: vertical;
    min-height: 80px;
  }

  /* Submit Button */
  .btn-submit-comment {
    align-self: flex-start;
    background-color: #007bff;
    color: #fff;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-submit-comment:hover {
    background-color: #0056b3;
  }
  
  
  
  
  .allComment{
    background: white;
    padding: 30px;
    box-sizing: border-box;
    
  }
  .comment {
    flex-direction: column;
    align-items: center;
    justify-content: left;
    box-shadow: 0 0 5px black;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    margin: 10px auto;
  }
  .comment .comment-message{
    margin-left: 60px;
  }
  .comment .user {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
  }
  .comment .user img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
  }
  .comment .user span{
    font-weight: 500;
    font-size: 1rem;
    color: #007bff;
    margin-left: 10px;
    font-weight: bold;
  }
  .pagination-buttons{
    display: flex;
    justify-content: space-evenly;
    background: white;
  }
  .npBTN{
    align-self: flex-start;
    background-color: #007bff;
    color: #fff;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
  }