/* news.css */

.news-post {
    background-color: #333;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .news-post h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .news-post p {
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
  }
  
  .news-post form {
    margin-top: 10px;
  }
  
  .news-post .delete-button {
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
  }
  
  .news-post .delete-button:hover {
    background-color: #ddd;
  }
  