/* 기본 폰트를 Noto Sans KR로 설정합니다. */
body, .font-noto {
    font-family: 'Noto Sans KR', sans-serif;
}

/* 활성화된 탭 버튼 스타일 */
.product-tab-button.active {
    border-color: #16A34A; /* green-600 */
    color: #16A34A; /* green-600 */
    font-weight: 700;
}

/* 제품 정보 테이블 스타일 */
.product-info-table th, 
.product-info-table td {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #E2E8F0; /* gray-200 */
    font-size: 0.875rem; /* text-sm */
    vertical-align: top;
}

.product-info-table th {
    background-color: #F7FAFC; /* gray-50 */
    font-weight: 700;
    color: #2D3748; /* gray-800 */
    width: 25%;
    text-align: left;
}

.product-info-table td {
    color: #4A5568; /* gray-700 */
}

/* 영양정보 테이블 스타일 */
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.nutrition-table th, 
.nutrition-table td {
    border: 1px solid #CBD5E0; /* gray-400 */
    padding: 0.75rem;
}

.nutrition-table thead th {
    background-color: #F7FAFC; /* gray-50 */
    font-weight: 700;
}

.nutrition-table tbody th {
    background-color: #F7FAFC; /* gray-50 */
    font-weight: 500;
    text-align: left;
    padding-left: 1rem;
}