/* Skeleton */
.profile-skeleton {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.skeleton-item {
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(90deg, #eee, #ddd, #eee);
  background-size: 200% 100%;
  animation: shine 1.5s infinite;
}
@keyframes shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* פרופיל */
.profile-item {
  margin: 12px 0;
}
.label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.value {
  display: block;
  color: #333;
}
.actions {
  margin-top: 20px;
}
button {
  padding: 6px 12px;
}
.secondary {
  background: #eee;
}


.post-main {
  flex: 3;
  padding-top: 0.1rem;
  direction: rtl;
  max-width: 700px;
      box-shadow: 0 4px 12px rgba(0,0,0,.08);

}

.post-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  direction: rtl;
  box-sizing: border-box;
  padding: 0.5rem 2rem 2rem 2rem;;
}
