/* ⭐⭐ Custom Top Bar Styles ⭐⭐ */
.top-bar {
    background-color: #f0f0f0; /* light gray */
    color: #333;
    font-size: 14px;
    padding: 8px 0;
  }
  
  .top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 15px;
  }
/* ⭐⭐ Force logo size override ⭐⭐ */
.sc_layouts_logo img {
    width: auto !important;
    max-width: 220px !important;
    height: auto !important;
  }
  
  @media (max-width: 1024px) {
    .sc_layouts_logo img {
      max-width: 180px !important;
    }
  }
  
  @media (max-width: 767px) {
    .sc_layouts_logo img {
      max-width: 140px !important;
    }
  }
  
  