/* Style for the navbar */
.navbar {
    direction: rtl;
    background-color: #f8f9fa; /* Background color */
    padding: 10px 0; /* Top and bottom padding */
  }

.logo{
    width: 150px;
}
  
  /* Style for the navbar links */
  .navbar-brand,
  .navbar-text {
    color: #8b795e; /* Dark sandy color for text */
    font-size: 1.2rem; /* Font size */
  }
  
  /* Style for the navbar links on hover */
  .navbar-brand:hover,
  .navbar-text:hover {
    text-decoration: none; /* Remove underline on hover */
    color: #6a5f4d; /* Darker sandy color on hover */
  }