/* friends_wall.css */
.fw-overlay {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 420px;
  max-height: 80vh;
  background: rgba(24,24,24,0.98);
  color: #eee;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  overflow: hidden;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  z-index: 9999;
}

.fw-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,0.03);
}

.fw-title { font-weight:600; font-size:14px; display:flex; gap:8px; align-items:center; }
.fw-close { cursor:pointer; opacity:0.7 }
.fw-body { padding:12px; overflow:auto; max-height: calc(80vh - 120px); }

.fw-postbox {
  display:flex;
  gap:8px;
  margin-bottom: 12px;
}
.fw-avatar { width:44px; height:44px; border-radius:50%; overflow:hidden; flex:0 0 44px; }
.fw-avatar img { width:100%; height:100%; object-fit:cover; }
.fw-input { flex:1; }
.fw-input textarea { width:100%; min-height:48px; max-height:150px; background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.03); color: #fff; padding:8px; border-radius:6px; resize:vertical; }

.fw-post {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  border-radius:8px;
  padding:10px;
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,0.02);
}
.fw-post .meta { display:flex; gap:8px; align-items:center; margin-bottom:6px; }
.fw-username { font-weight:600; font-size:13px; }
.fw-time { font-size:12px; opacity:0.6; }

.fw-content { white-space:pre-wrap; font-size:14px; margin-bottom:8px; }

.fw-actions { display:flex; gap:10px; align-items:center; font-size:13px; }
.fw-action { cursor:pointer; display:flex; gap:6px; align-items:center; padding:6px 8px; border-radius:6px; opacity:0.9; }
.fw-action:hover { background: rgba(255,255,255,0.02); }

.fw-comments { margin-top:8px; border-top:1px dashed rgba(255,255,255,0.02); padding-top:8px; }
.fw-comment { display:flex; gap:8px; margin-bottom:8px; }
.fw-comment .c-content { font-size:13px; background: rgba(0,0,0,0.2); padding:6px 8px; border-radius:6px; }

.fw-load-more { text-align:center; padding:8px; cursor:pointer; opacity:0.8; }

.fw-admin-controls {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.fw-admin-btn {
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  color: #fff;
  transition: 0.2s;
}

.fw-admin-edit {
  background: #4da3ff;
}
.fw-admin-edit:hover {
  background: #1f8bff;
}

.fw-admin-delete {
  background: #ff5252;
}
.fw-admin-delete:hover {
  background: #ff0000;
}

/* Mobil fullscreen Barát fal */
@media (max-width: 768px) {
  .fw-overlay {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .fw-body {
    max-height: none !important;
    height: calc(100% - 60px); /* header magasság figyelembevéve */
  }

  .fw-postbox, .fw-post, .fw-comments {
    border-radius: 0 !important;
  }
}
