diff --git a/assets/css/custom.css b/assets/css/custom.css index 79cab2d..d9d0916 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -350,3 +350,27 @@ h3 { font-size: 20px; line-height: 1.5; } @media (max-width: 768px) { .nav-links, .nav-actions .btn-secondary { display: none; } } + +/* Product Page Specific Styles */ +#human-in-loop-tabs .tab-button { + border-bottom-width: 2px; + border-color: transparent; + color: #6B7280; + transition: all 0.3s ease; +} + +#human-in-loop-tabs .tab-button.active-tab { + border-color: #4F46E5; + color: #4F46E5; + background-color: #F9FAFB; +} + +#human-in-loop-tabs .tab-content { + animation: fadeIn 0.5s; +} + +@keyframes fadeIn { + from { opacity: 0; transform: translateY(10px); } + to { opacity: 1; transform: translateY(0); } +} + diff --git a/product.php b/product.php index 6bd7adc..41d3b84 100644 --- a/product.php +++ b/product.php @@ -4,11 +4,15 @@