.elementor-17 .elementor-element.elementor-element-245077d{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-09223f1 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

.custom-header {
  background-color: #fff;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 1px solid #eee;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 40px;
}

.search-container {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 500px;
  margin: 10px;
}

.search-container input {
  flex: 1;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.rules-btn {
  background-color: #b91c32; /* Red */
  color: #fff;
  padding: 10px 15px;
  margin-left: 5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
}

.auth-buttons {
  display: flex;
  gap: 8px;
}

.auth-buttons a {
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid #b91c32; /* Red border */
  background-color: #333;
  color: #fff;
}

.auth-buttons a:hover {
  background-color: #b91c32;
}

/* Mobile & Tablet - Hide search, keep logo & buttons on one row */
@media (max-width: 1024px) {
  .search-container {
    display: none;
  }

  .header-container {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .logo img {
    height: 35px;
  }

  .auth-buttons {
    gap: 6px;
  }

  .auth-buttons a {
    padding: 6px 14px;
    font-size: 12px;
  }
}/* End custom CSS */