/* Arabic Image Right-center image positioning */
#prayer-image {
    position: fixed;               /* Fixed position to keep it on the screen */
    top: 55%;                      /* Vertically center the image */
    right: 40px;                      /* Align the image to the right edge */
    transform: translateY(-50%);   /* Adjust the image to be exactly in the center vertically */
    width: 450px;                  /* Set a fixed width for the image */
    height: auto;                  /* Maintain the aspect ratio of the image */
    z-index: 10;                   /* Ensure the image is above other content */
}
/* Adjustments for devices with a max width of 1280px */
@media (max-width: 1280px) {
    #prayer-image {
      right: 10px;                /* Move the image closer to the right edge */
      width: 400px;               /* Reduce the image size for smaller screens */
    }
}