@media only screen and (min-width: 960px) {
.hidedesktop{display:none;}
}

.dropdown-header.hosting-note {
  font-size: 12px; /* Standard font size */
  font-weight: 600; /* Bold style */
  color: #333; /* Slightly darker color */
  padding: 8px 20px;
  display: block;
  text-align: left; /* Align left for desktop */
  line-height: 1.5;
}

/* Make it responsive for smaller screens */
@media (max-width: 960px) {
  .dropdown-header.hosting-note {
    font-size: 13px; /* Slightly smaller font size on mobile */
    text-align: center; /* Center-align on mobile for better look */
    padding: 10px 15px; /* Adjust padding for smaller screens */
  }
}
