.testimony-card {
  background: #fff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.testimony-card h2 { font-size: 1.5rem; margin-bottom: 10px; }
.testimony-meta { font-size: 0.9rem; color: #666; margin-bottom: 15px; }
.testimony-card img { max-width: 100%; border-radius: 10px; margin-bottom: 15px; }
.testimony-actions { display: flex; justify-content: space-between; margin-top: 15px; }
.like-btn { background: blue; border: none; cursor: pointer; font-size: 1rem; }
.like-btn.liked { color: red; }

/* Comment Modal */
.comment-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
.comment-modal-content {
  background: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  width: 70%;
  max-width: 700px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  position: relative;
}
.close-modal {
  position: absolute;
  right: 15px; top: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}
.loading { text-align: center; padding: 20px; }
#edit-modal {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  z-index:1000;
}
.edit-modal-content {
  background:#fff;
  max-width:600px;
  margin:5% auto;
  padding:20px;
  border-radius:10px;
  position:relative;
}
#edit-modal-close {
  position:absolute;
  top:10px; right:15px;
  cursor:pointer;
  font-size:20px;
}

