/* Persian (RTL) base styles */
body {
  font-family: 'Vazir', sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #f8fafc;
}

/* Container styling */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #2563eb;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-primary {
  background-color: #3b82f6;
  color: white;
}
.btn-primary:hover {
  background-color: #2563eb;
}

/* Cards */
.card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* Persian specific styles */
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}

/* Feather icons alignment */
[data-feather] {
  vertical-align: middle;
}