  body {
      font-family: Arial, sans-serif;
  }

  a {
      text-decoration: none !important;
  }

  .custom-top-bar {
      background-color: #333;
      color: #ccc;
      padding: 8px 0;
      font-size: 13px;
  }

  .custom-top-bar a {
      color: #8C6635;
  }

  .custom-top-bar a:hover {
      color: #fff;
  }

  .top-bar-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .top-bar-left,
  .top-bar-right {
      display: flex;
      align-items: center;
  }

  .top-bar-left>div,
  .top-bar-left>a {
      margin-right: 20px;
  }

  .top-bar-right>div,
  .top-bar-right>a {
      margin-left: 20px;
  }

  .social-icons a {
      font-size: 14px;
  }

  .user-info {
      display: flex;
      align-items: center;
  }

  .user-info .logout-link {
      margin-left: 10px;
      text-decoration: underline !important;
  }

  .custom-header {
      background-color: #fff;
      padding: 15px 0;
      border-bottom: 1px solid #f0f0f0;
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo-container {
      flex: 1;
  }

  .search-container {
      flex: 2;
      display: flex;
      justify-content: center;
  }

  .buttons-container {
      flex: 1;
      display: flex;
      justify-content: flex-end;
  }

  .search-area {
      width: 100%;
      max-width: 450px;
  }

  .search-area .input-group .form-control {
      height: 40px;
      border-right: none;
  }

  .search-area .input-group .btn {
      height: 40px;
      background-color: #3498db;
      color: white;
  }

  .header-buttons .btn {
      margin-left: 10px;
      font-weight: bold;
      border-radius: 4px;
      padding: 9px 18px;
  }

  .header-buttons .btn-success {
      background-color: #3498db;
      border-color: #3498db;
  }
.header-buttons .btn-success:hover {
    background-color: #3498db;
    border-color: #3498db;
  }

  .header-buttons .btn-warning {
      background-color: #f0ad4e !important;
      border-color: #eea236 !important;
  }

  .custom-nav {
      background-color: #3b424d;
      border: none;
  }

  .custom-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
  }

  .custom-nav ul li a {
      display: block;
      padding: 15px 20px;
      color: #7e592a;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 14px;
  }

  .custom-nav ul li a:hover {
      background-color: #3498db;
      color: #fff;
  }

  @media (max-width: 991px) {

      .header-container {
          flex-direction: column;
          gap: 15px;
      }

      .search-container {
          width: 100%;
          order: 3;
      }

      .logo-container {
          order: 1;
          text-align: center;
      }

      .buttons-container {
          order: 2;
          width: 100%;
          justify-content: center;
      }

      .custom-nav ul {
          flex-direction: column;
          align-items: center;
      }

      .custom-nav ul li a {
          padding: 12px 15px;
          text-align: center;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .custom-nav ul li:last-child a {
          border-bottom: none;
      }
  }

  @media (max-width: 767px) {

      .top-bar-container {
          flex-direction: column;
          gap: 10px;
      }

      .top-bar-left,
      .top-bar-right {
          justify-content: center;
          flex-wrap: wrap;
          width: 100%;
      }

      .top-bar-left>div,
      .top-bar-left>a {
          margin: 5px 10px;
      }
  }

  .hot-badge {
      position: absolute;
      top: 5px;
      right: 5px;
      background-color: #ff0000;
      color: #fff;
      font-size: 7px;
      font-weight: bold;
      padding: 2px 5px;
      border-radius: 4px;
      line-height: 1;
      animation: blinkEffect 1s infinite ease-in-out;
  }
  @keyframes blinkEffect {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}