#commentsection, #comment-entry {
    border: 2px solid gray;
    border-radius: .5rem;
    padding: 1rem;
  }
  
  .comment .author {
    font-weight: bold;
  }
  
  .comment .datetime {
    font-size: 80%;
    font-style: italic;
  }
  
  /* General form styling */
  form {
    max-width: 500px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
  }
  
  /* Input and textarea styling */
  input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
  }
  
  /* Focus state */
  input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
    border-color: #007BFF;
    outline: none;
  }
  
  /* Label styling */
  label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #333;
  }
  
  /* Button styling */
  button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 15px;
  }
  
  /* Hover state for button */
  button:hover {
    background-color: #0056b3;
  }
  