body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #343a40;
  background: #f7f7f7;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 300;
}

.btn-enhanced {
  transition: all 0.15s ease-in-out;
  border-radius: 4px;
  font-weight: 500;
}
.btn-enhanced:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.btn-enhanced:active {
  transform: translateY(0);
}

.card-enhanced {
  border: none;
  border-radius: 4px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.15s ease-in-out;
}
.card-enhanced:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.nutrition-table .sortable {
  transition: background-color 0.15s ease-in-out;
}
.nutrition-table .sortable:hover {
  background-color: rgba(248, 249, 250, 0.1);
}
.nutrition-table .badge {
  font-size: 0.875em;
  padding: 0.375rem 0.75rem;
}

.recipe-modal .ingredient-row {
  transition: background-color 0.15s ease-in-out;
}
.recipe-modal .ingredient-row:hover {
  background-color: rgba(248, 249, 250, 0.5);
}
.recipe-modal .calorie-total.over-target {
  color: #c45560;
  animation: pulse 2s infinite;
}
.recipe-modal .calorie-total.target-reached {
  color: #90b494;
}

.toast-enhanced {
  border-radius: 4px;
  backdrop-filter: blur(10px);
}
.toast-enhanced.toast-success {
  background-color: rgba(144, 180, 148, 0.95);
  border-left: 4px solid #90b494;
}

.form-enhanced .form-control {
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-enhanced .form-control:focus {
  border-color: rgba(102, 132, 137, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(102, 132, 137, 0.25);
}
.form-enhanced .form-label {
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.5rem;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.text-gradient {
  background: linear-gradient(45deg, #668489, #545775);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-soft {
  box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
}

.border-soft {
  border: 1px solid rgba(52, 58, 64, 0.125);
}

@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .modal-dialog {
    margin: 10px;
  }
  .btn-group-mobile .btn {
    margin-bottom: 0.5rem;
    width: 100%;
  }
}
@media print {
  .btn, .modal, .toast-container {
    display: none !important;
  }
  .table {
    font-size: 0.875rem;
  }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background: rgba(52, 58, 64, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(52, 58, 64, 0.5);
}

h1, h2, h3, h4, h5, h6 {
  color: #343a40;
}

.btn-primary {
  background-color: #668489 !important;
  border-color: #668489 !important;
}
.btn-primary:hover {
  background-color: rgb(80.2343096234, 103.8326359833, 107.7656903766) !important;
  border-color: rgb(75.8811715481, 98.1991631799, 101.9188284519) !important;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 132, 137, 0.5) !important;
}
.btn-primary:active, .btn-primary.active {
  background-color: rgb(75.8811715481, 98.1991631799, 101.9188284519) !important;
  border-color: rgb(71.5280334728, 92.5656903766, 96.0719665272) !important;
}

.btn-outline-primary {
  color: #668489 !important;
  border-color: #668489 !important;
}
.btn-outline-primary:hover {
  background-color: #668489 !important;
  border-color: #668489 !important;
  color: #fff !important;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 132, 137, 0.5) !important;
}

.btn-success {
  background-color: #90b494 !important;
  border-color: #90b494 !important;
}
.btn-success:hover {
  background-color: rgb(113.564516129, 159.435483871, 118.6612903226) !important;
  border-color: rgb(107.4774193548, 155.3225806452, 112.7935483871) !important;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(144, 180, 148, 0.5) !important;
}
.btn-success:active, .btn-success.active {
  background-color: rgb(107.4774193548, 155.3225806452, 112.7935483871) !important;
  border-color: rgb(101.8548387097, 150.7451612903, 107.2870967742) !important;
}

.btn-outline-success {
  color: #90b494 !important;
  border-color: #90b494 !important;
}
.btn-outline-success:hover {
  background-color: #90b494 !important;
  border-color: #90b494 !important;
  color: #fff !important;
}

.btn-warning {
  background-color: #DBCFB0 !important;
  border-color: #DBCFB0 !important;
  color: #343a40 !important;
}
.btn-warning:hover {
  background-color: rgb(203.0347826087, 185.7130434783, 140.9652173913) !important;
  border-color: rgb(199.8417391304, 181.4556521739, 133.9582608696) !important;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 207, 176, 0.5) !important;
}
.btn-warning:active, .btn-warning.active {
  background-color: rgb(199.8417391304, 181.4556521739, 133.9582608696) !important;
  border-color: rgb(196.6486956522, 177.1982608696, 126.9513043478) !important;
}

.btn-outline-warning {
  color: #DBCFB0 !important;
  border-color: #DBCFB0 !important;
}
.btn-outline-warning:hover {
  background-color: #DBCFB0 !important;
  border-color: #DBCFB0 !important;
  color: #343a40 !important;
}

.btn-danger {
  background-color: #c45560 !important;
  border-color: #c45560 !important;
}
.btn-danger:hover {
  background-color: rgb(170.7423580786, 59.2576419214, 70.3056768559) !important;
  border-color: rgb(163.1703056769, 56.6296943231, 67.1877729258) !important;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(196, 85, 96, 0.5) !important;
}
.btn-danger:active, .btn-danger.active {
  background-color: rgb(163.1703056769, 56.6296943231, 67.1877729258) !important;
  border-color: rgb(155.5982532751, 54.0017467249, 64.0698689956) !important;
}

.btn-outline-danger {
  color: #c45560 !important;
  border-color: #c45560 !important;
}
.btn-outline-danger:hover {
  background-color: #c45560 !important;
  border-color: #c45560 !important;
  color: #fff !important;
}

.btn-info {
  background-color: #545775 !important;
  border-color: #545775 !important;
}
.btn-info:hover {
  background-color: rgb(62.6865671642, 64.9253731343, 87.3134328358) !important;
  border-color: rgb(58.423880597, 60.5104477612, 81.376119403) !important;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(84, 87, 117, 0.5) !important;
}
.btn-info:active, .btn-info.active {
  background-color: rgb(58.423880597, 60.5104477612, 81.376119403) !important;
  border-color: rgb(54.1611940299, 56.0955223881, 75.4388059701) !important;
}

.btn-outline-info {
  color: #545775 !important;
  border-color: #545775 !important;
}
.btn-outline-info:hover {
  background-color: #545775 !important;
  border-color: #545775 !important;
  color: #fff !important;
}

.badge.bg-primary {
  background-color: #668489 !important;
}

.badge.bg-success {
  background-color: #90b494 !important;
}

.badge.bg-warning {
  background-color: #DBCFB0 !important;
  color: #343a40 !important;
}

.badge.bg-danger {
  background-color: #c45560 !important;
}

.badge.bg-info {
  background-color: #545775 !important;
}

.alert-primary {
  background-color: rgb(216.5941422594, 225.0041841004, 226.4058577406) !important;
  border-color: rgb(187.359832636, 202.1715481172, 204.640167364) !important;
  color: rgb(58.4686192469, 75.6652719665, 78.5313807531) !important;
}

.alert-success {
  background-color: white !important;
  border-color: rgb(235.3064516129, 241.6935483871, 236.0161290323) !important;
  color: rgb(89.5161290323, 132.4838709677, 94.2903225806) !important;
}

.alert-warning {
  background-color: rgb(250.9304347826, 249.5739130435, 246.0695652174) !important;
  border-color: #DBCFB0 !important;
  color: rgb(131.2086956522, 111.2782608696, 59.7913043478) !important;
}

.alert-danger {
  background-color: rgb(248.5589519651, 236.4410480349, 237.6419213974) !important;
  border-color: rgb(235.4192139738, 198.5807860262, 202.231441048) !important;
  color: rgb(132.8820960699, 46.1179039301, 54.7161572052) !important;
}

.alert-info {
  background-color: rgb(193.8805970149, 195.447761194, 211.1194029851) !important;
  border-color: rgb(164.1940298507, 166.5223880597, 189.8059701493) !important;
  color: rgb(41.3731343284, 42.8507462687, 57.6268656716) !important;
}

a {
  color: #668489 !important;
}
a:hover {
  color: rgb(69.3514644351, 89.7489539749, 93.1485355649) !important;
}

.text-primary {
  color: #668489 !important;
}

.text-success {
  color: #90b494 !important;
}

.text-warning {
  color: #DBCFB0 !important;
}

.text-danger {
  color: #c45560 !important;
}

.text-info {
  color: #545775 !important;
}

.table-primary {
  background-color: rgb(231.2112970711, 236.4205020921, 237.2887029289) !important;
  border-color: rgb(201.9769874477, 213.5878661088, 215.5230125523) !important;
}

.table-success {
  background-color: white !important;
  border-color: rgb(250.5241935484, 251.9758064516, 250.685483871) !important;
}

.table-warning {
  background-color: white !important;
  border-color: #DBCFB0 !important;
}

.table-danger {
  background-color: white !important;
  border-color: rgb(241.9890829694, 217.5109170306, 219.9366812227) !important;
}

.table-info {
  background-color: rgb(208.723880597, 209.9104477612, 221.776119403) !important;
  border-color: rgb(179.0373134328, 180.9850746269, 200.4626865672) !important;
}

.table-dark {
  background-color: #343a40 !important;
  border-color: rgb(86.2931034483, 96.25, 106.2068965517) !important;
}

.modal-header {
  border: none !important;
  border-radius: 1rem 1rem 0 0 !important;
  border-bottom: 1px solid rgba(113, 143, 148, 0.1) !important;
  padding: 1.5rem !important;
}
.modal-header .modal-title {
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
}
.modal-header.receipe {
  background: #668489 !important;
}
.modal-header.receipe .modal-title {
  color: #fff;
}
.modal-header.nutrient {
  background: #90b494 !important;
}
.modal-header.nutrient .modal-title {
  color: #fff;
}
.modal-header.modal-progress {
  background: #DBCFB0 !important;
}
.modal-header.modal-progress .modal-title {
  color: #343a40;
}

.modal-content {
  border: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.add-section {
  background-color: rgba(102, 132, 137, 0.1);
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgba(102, 132, 137, 0.5);
}
.add-section h6 {
  color: #668489;
  font-size: 20px;
  padding-bottom: 10px;
}

.hepafast-navbar {
  background: linear-gradient(135deg, #718f94 0%, #90b494 100%);
  box-shadow: 0 4px 20px rgba(113, 143, 148, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 0;
  position: relative;
}
.hepafast-navbar .navbar-brand {
  font-size: 1.75rem;
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.hepafast-navbar .navbar-brand:hover {
  color: rgba(255, 255, 255, 0.9) !important;
  transform: scale(1.05);
}
.hepafast-navbar .navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.hepafast-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}
.hepafast-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hepafast-navbar .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.hepafast-navbar .navbar-nav .nav-link:hover {
  color: white !important;
}
.hepafast-navbar .navbar-nav .nav-link.active {
  color: white !important;
  background: transparent;
  font-weight: 700;
}
.hepafast-navbar .navbar-nav .dropdown-toggle::after {
  filter: brightness(0) invert(1);
}
.hepafast-navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.hepafast-navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 0;
  color: #333;
  font-weight: 500;
}
.dropdown-item:hover {
  background: #e9ecef;
  color: #333;
}
.dropdown-item.active {
  background: #718f94;
  color: #fff !important;
  font-weight: 300;
}
.dropdown-item.text-danger:hover {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
}

.dropdown-header {
  padding: 0.5rem 1.5rem 0.25rem;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.dropdown-divider {
  margin: 0.5rem 1rem;
  border-color: rgba(113, 143, 148, 0.2);
}

.hepafast-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(113, 143, 148, 0.1);
  transition: all 0.3s ease;
}
.hepafast-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(113, 143, 148, 0.15);
}

.table-responsive {
  overflow: visible;
}

.table tbody tr {
  position: relative;
}

.table .dropdown-menu {
  z-index: 9999 !important;
}

.table tbody tr:has(.dropdown.show) {
  z-index: 1000;
  position: relative;
}

.table .dropdown.show {
  z-index: 1001;
}

.table tbody tr.dropdown-open {
  z-index: 1000;
  position: relative;
}

.table .dropdown .btn {
  border: none !important;
  background: transparent !important;
  font-size: 1.1em;
  padding: 0.5rem 0.7rem;
  box-shadow: none !important;
}
.table .dropdown .btn:hover {
  background: rgba(113, 143, 148, 0.1) !important;
}
.table .dropdown .btn:focus {
  box-shadow: none !important;
}

.main-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .hepafast-navbar {
    padding: 0.5rem 0;
  }
  .hepafast-navbar .navbar-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
  }
  .hepafast-navbar .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
  .hepafast-navbar .navbar-nav .nav-link {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
  }
  .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    margin: 0.25rem 0;
  }
}

/*# sourceMappingURL=base.css.map */
