@media (max-width: 767px) { /* Adjust 767px as needed for your design */

	.nav_item{
		width:100%;
	}
#nav_container{
    display: inline-block;
}
#site-title{
    margin: 0px;
    width:100%;
}

  body {
    font-size: 16px; /* Larger default font size for readability */
    line-height: 1.5; /* Improved line height for smaller screens */
  }
#footer{
	display:block;
}
  h1 {
    font-size: 2em; /* Slightly smaller headings */
  }

  nav ul {
    flex-direction: column; /* Stack navigation items vertically */
    text-align: center; /* Center the navigation text */
  }

  nav li {
    margin: 10px 0; /* Add vertical margin between nav items */
  }

  .container {
    padding: 10px; /* Reduce padding for smaller screens */
  }

  /* Example: Make images responsive and fit the screen width */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Example: Hide elements that are not needed on mobile */
  .desktop-only {
    display: none;
  }

.phone-only{
    display: block;
}
  /* Example: Make buttons larger for easier tapping */
  button,
  input[type="submit"] {
    padding: 10px 15px;
    font-size: 1.2em;
  }


  /* Example:  Adjust grid layout for mobile (if using grid) */
  .grid-container {
    grid-template-columns: 1fr; /* Single column layout on mobile */
  }

  /* Example: Stack form elements vertically */
  form label,
  form input,
  form textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

 /* Example: Make tables responsive by allowing horizontal scrolling */
  table {
    display: block;
    overflow-x: auto; /* Enable horizontal scroll */
    width: 100%;
  }

}
