body {
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: auto;
  background-color: #ffffff; /* white page background */
  color: #000000; /* black text for contrast */
}

.post {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  background-color: #ffffff; /* white post background */
  cursor: pointer;
}

.account {
  font-weight: bold;
  color: #1DA1F2; /* still blue for the handle */
  cursor: pointer;
}

.time {
  font-size: 0.8em;
  color: gray;
}

/* Modal (for post popups) */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: #ffffff; /* white popup background */
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
}
