﻿body {
  font-family: sans-serif;
  direction: rtl;
  background: #f5f5f5;
}

.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.box {
  width: 200px;
  background: #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  background: #ccc; /* در صورت نبود عکس خاکستری میشه */
  margin: 0 auto;
  display: block;
}

.box p {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
