/* Global Styles */
body {
    font-family: Arial;
    background-color:beige;
  }
  
  header h1 {
    margin: 0;
    font-size: 36px;
    font-family: Georgia bold;
  }
  .card-title {
    font-family: 'Georgia', serif; /* تعيين نوع الخط إلى Georgia */
    font-weight: bold; /* تعيين الوزن إلى Bold */
  }
  /* Card Styles */
  .card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%; /* لتحديد ارتفاع ثابت لجميع الكاردات */
    display: flex;
    flex-direction: column;
  }
  
  .card-body {
    flex-grow: 1; /* لجعل الجسم الداخلي للكارد يتوسع لملء المساحة المتاحة */
  }

  .card:hover {
    transform: translateY(-5px);
  }
  
  .card-img-top {
    border-radius: 10px;
    width: 100%; /* Set image to take up full width of the card */
    height: 200px; /* Set a fixed height for the image */
    object-fit: cover; /* Ensure the image covers the space without distortion */
  }
  
  /* .button {
    background-color:#ffc107; 
    border: none; 
    color: white;
    padding: 15px 32px; 
    text-align: center;
    text-decoration: none; 
    display: inline-block;
    font-size: 16px; 
    margin: 4px 2px;
    cursor: pointer; 
    border-radius: 8px; 
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #f0bd57; 
} */
  
.button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  .button:hover {
    background-color: #45a049;
  }
  
  .print-btn {
    background-color: #4CAF50;
    color: white;
  }
  
  .print-btn:hover {
    background-color: #45a049;
  }
  
  .rating-btn {
    background-color: #ffc107;
    color: white;
  }
  
  .rating-btn:hover {
    background-color: #e0a800;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .card {
      width: 100%;
    }
  
    button {
      margin-top: 10px;
    }
  }
  