/* تحسينات التصميم للواجهة العربية */
.rtl {
  direction: rtl;
  text-align: right;
}

.ltr {
  direction: ltr;
  text-align: left;
}

.card {
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e2e8f0;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* تحسينات للواجهة المظلمة */
.dark .card {
  background-color: #1e293b;
  border-color: #334155;
}

.dark .table th {
  background-color: #334155;
}

.dark .table tr:hover {
  background-color: #334155;
}

/* تحسينات للصور */
img {
  max-width: 100%;
  height: auto;
}

.hero {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
}

/* تحسينات للنماذج */
input, textarea, select {
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* تحسينات للأزرار */
button, .btn {
  transition: all 0.2s;
}

button:hover, .btn:hover {
  transform: translateY(-1px);
}

/* تحسينات للشعار */
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* تحسينات للهيدر */
header {
  border-bottom: 1px solid #e2e8f0;
}

.dark header {
  border-bottom-color: #334155;
}

/* تحسينات للفوتر */
footer {
  border-top: 1px solid #e2e8f0;
}

.dark footer {
  border-top-color: #334155;
}

/* تحسينات للروابط */
a {
  color: #3b82f6;
  transition: color 0.2s;
}

a:hover {
  color: #2563eb;
}

/* تحسينات للاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .hero {
    height: 300px;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}