/* Main styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  direction: rtl;
  text-align: right;
}

.logo {
  max-height: 80px;
}

.card {
  border-radius: 10px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.form-label {
  font-weight: 600;
}

.nav-tabs .nav-link {
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
}

.nav-tabs .nav-link.active {
  font-weight: bold;
}

/* Table styles */
.table th {
  font-weight: bold;
  background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .table-responsive {
    overflow-x: auto;
  }
}