/* assets/css/style.css */

/* Tab logic helper */
.tab-content {
  display: none;
}
.tab-content.active {
  display: grid;
}

/* Tab button theme */
.tab-btn {
  color: #fafaf9;
  border: 1px solid transparent;
}

.tab-btn:hover:not(.active) {
  background-color: #881337;
}

.tab-btn.active {
  background-color: #ffffff !important;
  color: #4a2b33 !important;
  border-color: #f5f5f4 !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}