/*
Theme Name: Inovic
Theme URI: http://inovic.com/
Author: Inovic Team
Author URI: http://inovic.com/
Description: A custom WordPress theme for Inovic CRM India PVT LTD.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inovic
*/
/* Download Catalog Widget */
.yellow-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ffcc00; /* Assuming a bright yellow based on the name */
  padding: 10px 20px;
  border-radius: 5px;
  flex-wrap: wrap;
}

.yellow-bar .nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.yellow-bar .nav-link:hover {
  opacity: 0.8;
}

.yellow-bar .nav-link svg {
  flex-shrink: 0;
}