/* ===========================
   RECIPE TABS - style-recipes-tabs.css
   Ανεξάρτητο CSS για tabs συνταγών
   =========================== */

.recipe-nav-tab {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 2px solid #dee2e6;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.recipe-nav-tab .recipe-nav-link {
  display: inline-block;
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-bottom: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.recipe-nav-tab .recipe-nav-link:hover {
  background-color: #e9ecef;
  color: #333;
  text-decoration: none;
}

.recipe-nav-tab .recipe-nav-link.active {
  background-color: #A4579F;
  color: #fff !important;
  border-color: #A4579F;
}

.recipe-tab-content {
  padding: 20px 0;
}

.recipe-tab-pane {
  display: none;
}

.recipe-tab-pane.show.active {
  display: block;
}